corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 # abbrev-js
2  
3 Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).
4  
5 Usage:
6  
7 var abbrev = require("abbrev");
8 abbrev("foo", "fool", "folding", "flop");
9  
10 // returns:
11 { fl: 'flop'
12 , flo: 'flop'
13 , flop: 'flop'
14 , fol: 'folding'
15 , fold: 'folding'
16 , foldi: 'folding'
17 , foldin: 'folding'
18 , folding: 'folding'
19 , foo: 'foo'
20 , fool: 'fool'
21 }
22  
23 This is handy for command-line scripts, or other cases where you want to be able to accept shorthands.