mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
12 lines
354 B
JavaScript
Executable File
12 lines
354 B
JavaScript
Executable File
var emojiStrip = require('..'),
|
|
emoji
|
|
;
|
|
|
|
emoji = 'thumbs-up👍 for staying strong💪 without emoji please🙏';
|
|
console.log(emojiStrip(emoji));
|
|
// => "thumbs-up for staying strong without emoji please"
|
|
|
|
emoji = 'dealing with emoji😡 makes me feel like poop💩';
|
|
console.log(emojiStrip(emoji));
|
|
// => "dealing with emoji makes me feel like poop"
|