Package Exports
- acron
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (acron) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
acron
Generate acronyms based on the 10,000 most common English words.
CLI Usage
npm i -g acron
acron lgtm
Result:
Lions Gobble Tiny Mouse
Module Usage
const acron = require("acron");
acron("lgtm");
Result:
[ 'lions', 'gobble', 'tiny', 'mouse' ]