[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE2017-09-28 02:46 2.0K0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md2010-10-04 18:52 499 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]abbrev.js2017-02-14 06:29 1.7K 
[   ]package.json2023-06-08 14:14 1.4K 
# 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.