classicfm-discord-bot/node_modules/abbrev
2024-05-09 14:45:10 -04:00
..
abbrev.js v1.0 Commit 2024-05-09 14:45:10 -04:00
LICENSE v1.0 Commit 2024-05-09 14:45:10 -04:00
package.json v1.0 Commit 2024-05-09 14:45:10 -04:00
README.md v1.0 Commit 2024-05-09 14:45:10 -04: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.