CB-14145 commit updated node_modules in 7.1.x only

(installed by npm@6.1.0)
This commit is contained in:
Christopher J. Brody
2018-07-04 06:13:27 -04:00
parent 3071bb313f
commit 6758793f09
325 changed files with 66919 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# abbrev-js
Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).
Usage:
var abbrev = require("abbrev");
abbrev("foo", "fool", "folding", "flop");
// returns:
{ fl: 'flop'
, flo: 'flop'
, flop: 'flop'
, fol: 'folding'
, fold: 'folding'
, foldi: 'folding'
, foldin: 'folding'
, folding: 'folding'
, foo: 'foo'
, fool: 'fool'
}
This is handy for command-line scripts, or other cases where you want to be able to accept shorthands.