CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
README.md24 linesDownload Raw Back to abbrev
1# abbrev-js2 3Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev).4 5Usage: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 23This is handy for command-line scripts, or other cases where you want to be able to accept shorthands.24 
basant307/AI_Governance_Project · CoolFace