Skip to content

wolfgang42/jstransformer-yaml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jstransformer-yaml

YAML support for JSTransformers.

Installation

npm install jstransformer-yaml

API

You may also want to use jstransformer-json to change the format of the resulting JSON string.

const yaml = jstransformer(require('jstransformer-yaml'))
const string = `
this: foo
that:
  - bar
  - baz
`
yaml.render(string)
=> { body: '{"this":"foo","that":["bar","baz"]}',
     dependencies: [] }

License

Released into the public domain under the Unlicense.