Convert and/or define numeronyms from words
You can install it with npm(1)
$ npm install numeronymor use component(1)
$ npm install jwerle/numeronymnumeronym() tries its best to create a numeronym representation of a word you provide. It is simple
to use and may be useful to someone out there. It was fun to make.
To start using numeronym, just pass it a string argument. All numeronym's created are stored in an internal table
varn=require('numeronym');console.log(n('canine'));// k9console.log(n('internationalization'));// i18nAccepts a word as an argument. An optional alias or options object can be passed as well. In the case
of a string alias provied, the creation of a numeronym is skipped and the alias is used as the value.
Returns the numeronym associated with the provided word
varn=require('numeronym');n('internationalization');// i18nn.get('internationalization');// i18nReturns the string used to create numeronym
varn=require('numeronym');n.lookup('k9');// canineTODO ..
$ make testjoseph werle
MIT