Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

underscorize

J-Hannes100.0.2

In place bindings of underscore.js functions.

underscore, functional

readme

underscorize.js

In place bindings of underscore.js to get rid of the underscore.

Installation

npm install underscorize

Usage

Instead of

var _ = require('underscore');

var args = _.drop(process.argv, 2);

use

require('underscorize');

var args = process.argv.drop(2);

etc. pp.