emoji-string-tools
v0.0.3
Published
A JS Module to help manipulate strings that contain emoji
Downloads
3
Readme
Emoji String Tools
A JS Module to help manipulate strings that contain emoji
Installation
npm install emoji-string-tools
Usage
const est = require('emoji-string-tools');
est.isEmojiOnly("✊👊✊👊✊👊✊👊"); //true
est.isEmojiOnly("Go suck a 🍆!"); //false
est.stripNonEmoji("✊👊✊👊✊👊✊👊"); //✊👊✊👊✊👊✊👊
est.stripNonEmoji("Go suck a 🍆!"); //🍆
Tests
npm test
Contributing
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.