unassert-cli

1.0.0 • Public • Published

unassert-cli

CLI for unassert. Provides unassert command which compiles assertions away from target file.

Build Status NPM version Dependency Status License

RELATED MODULES

CHANGELOG

See CHANGELOG

EXAMPLE

For given math.js below,

'use strict';
 
var assert = require('assert');
 
function add (a, b) {
    console.assert(typeof a === 'number');
    assert(!isNaN(a));
    assert.equal(typeof b, 'number');
    assert.ok(!isNaN(b));
    return a + b;
}

Install unassert command, run it and redirect its output into file.

$ npm install -g unassert-cli
$ unassert /path/to/src/math.js > /path/to/dist/math.js

Then you will see assert calls in /path/to/dist/math.js disappear.

'use strict';
function add(a, b) {
    return a + b;
}

See unassert project for more documentation.

INSTALL

via npm

Install globally,

$ npm install -g unassert-cli

and/or locally.

$ npm install --save-dev unassert-cli

USAGE

$ unassert /path/to/src/target.js > /path/to/build/target.js
$ cat /path/to/src/target.js | unassert > /path/to/build/target.js

OUR SUPPORT POLICY

We support Node under maintenance. In other words, we stop supporting old Node version when their maintenance ends.

This means that any other environment is not supported.

NOTE: If unassert-cli works in any of the unsupported environments, it is purely coincidental and has no bearing on future compatibility. Use at your own risk.

AUTHOR

LICENSE

Licensed under the MIT license.

Package Sidebar

Install

npm i unassert-cli

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • twada