Opinionated YAML encoder/decoder for CloudPSS. Based on [js-yaml](https://github.com/nodeca/js-yaml).
Opinionated YAML encoder/decoder for CloudPSS. Based on js-yaml.
Added custom type to support typed arrays, ArrayBuffer, Map and Set.
``ts
import { load, dump } from '@cloudpss/yaml';
const obj = load('foo: 1');
const text = dump(obj);
``