1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 08:10:18 +00:00
musix-oss/node_modules/abbrev
2020-03-04 13:43:21 +02:00
..
abbrev.js opus 2020-03-04 13:43:21 +02:00
LICENSE opus 2020-03-04 13:43:21 +02:00
package.json opus 2020-03-04 13:43:21 +02:00
README.md opus 2020-03-04 13:43:21 +02:00

abbrev-js

Just like ruby's 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.