@anzerr/json.to.yaml

json to yaml format

Usage no npm install needed!

<script type="module">
  import anzerrJsonToYaml from 'https://cdn.skypack.dev/@anzerr/json.to.yaml';
</script>

README

Intro

GitHub Actions status | publish

Convert JSON to YAML

Install

npm install --save git+https://github.com/anzerr/json.to.yaml.git
npm install --save @anzerr/json.to.yaml

Example

const YAML = require('./index.js');
YAML.stringify({
    foo: 'bar',
    baz: ['qux','quxx']
});