Skip to main content
Deno 2 is finally here 🎉️
Learn more

overview

dependencies

all of deno standard library.

usage

// this assumes the latest version
import { dallmo_util_yaml } from "https://deno.land/x/dallmo_util_yaml/mod.ts";

const config_file = "config.yaml";
const config_obj = await dallmo_util_yaml( config_file );
  console.log( config_obj );

test

to run test codes :

either :

  1. stay in the project root folder, i.e. [root]/ ;
  2. run deno task test ;

or :

  1. switch to the folder [root]/test ;
  2. run deno test --allow-read ;