Name: js-handler/node_modules/nodeunit/node_modules/tap/node_modules/yamlish/README.md 
1:
This is a thingie to parse the "yamlish" format used to serialize
2:
objects in the TAP format.
3:
 
4:
It's like yaml, but just a tiny little bit smaller.
5:
 
6:
Usage:
7:
 
8:
    var yamlish = require("yamlish")
9:
    // returns a string like:
10:
    /*
11:
    some:
12:
      object:
13:
        - full
14:
        - of
15:
    pretty: things
16:
    */
17:
    yamlish.encode({some:{object:["full", "of"]}, pretty:"things"})
18:
 
19:
    // returns the object
20:
    yamlish.decode(someYamlishString)