0.0.2-alpha.1 • Published 8 years ago

jsserializer-yaml v0.0.2-alpha.1

Weekly downloads
19
License
-
Repository
-
Last release
8 years ago

Yaml Serializer

NPM version Build Status Coverage Status

An jsserializer adapter for js-yaml

Example

// import an adapter
import yaml from 'jsserializer-yaml';
// import this library
import serializer from 'jsserializer';
// load in the adapter
let service = serializer(yaml);
// provide the serializer options
let options = {};
// serialize
let obj = service.parse('test: 123', options);
let str = service.stringify(obj, options);

Install

NPM

  • Install: npm install --save jserializer
  • Install: npm install --save jserializer-yaml

API

PropertytypeparamsDescription
extensionsgetterstring[]
parsefunction(source: string, options: Object)
stringifyfunction(source: Object, options: string)

License

Copyright (c) 2016 https://github.com/orgs/jsserializers/people. All rights reserved.

Licensed under the MIT License. See LICENSE in the project root for license information.