static-js-yaml

Source transform static js-yaml expressions to remove yaml


Keywords
browserify, yaml
License
Unlicense
Install
npm install static-js-yaml@1.0.0

Documentation

static-js-yaml

Source transform static js-yaml expressions to remove yaml.

Example

Source:

var yaml = require("static-js-yaml");
console.log(yaml.safeLoad("foo: 1"));
console.log(yaml.dump({foo: 1}));

Becomes:

console.log({ foo: 1 });

Usage

  1. Use the static-js-yaml module with statically-analyzable expressions in place of the js-yaml module.
  2. Use the js-yaml/transform module as a browserify transform to transform your source.

js-yaml/transform

API

static-js-yaml

A subset of the js-yaml API is exported: safeLoad, load, safeDump, dump (everything but multi-document loaders).

static-js-yaml/transform

The transform module is implemented as a browserify transform function but can be used directly without browserify.