static-js-yaml

1.0.0 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i static-js-yaml

Weekly Downloads

26

Version

1.0.0

License

Public Domain

Last publish

Collaborators

  • parshap