limepot-xyz/BETA/mybulma/node_modules/abbrev
LimePot 76722fec47 Beta Site
Going to slowly work on a Bulma site, which will end up being the main site.

Currently under the /BETA/ folder so Alpha site will still be main site.
2022-12-20 16:23:37 -07:00
..
abbrev.js Beta Site 2022-12-20 16:23:37 -07:00
LICENSE Beta Site 2022-12-20 16:23:37 -07:00
package.json Beta Site 2022-12-20 16:23:37 -07:00
README.md Beta Site 2022-12-20 16:23:37 -07: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.