tap-yaml
v4.0.0
Published
Yaml handling for TAP parsers and generators
Downloads
1,073,964
Readme
tap-yaml
Yaml handling for JavaScript TAP parsers and generators
USAGE
import { parse, stringify } from 'tap-yaml'
const str = stringify(someObject)
const obj = parse(someString)
This is essentially a re-export of the yaml package, with a few custom types and default properties to be more suitable for use in tap.
- Everything from yaml-types is included by default.
omap
andset
are configured to refer to Map and Set objects.- Objects with a
null
prototype maintain their null-prototyped-ness.