index.js 192 B

1234567
  1. var yaml = require('js-yaml');
  2. module.exports = function (source) {
  3. this.cacheable && this.cacheable();
  4. var res = yaml.safeLoad(source);
  5. return JSON.stringify(res, undefined, '\t');
  6. };