mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
19 lines
409 B
JavaScript
19 lines
409 B
JavaScript
var gemoji = require('gemoji'),
|
|
emojiPattern,
|
|
emojiArray,
|
|
emojiRegex
|
|
;
|
|
|
|
function emojiStrip (str) {
|
|
return str.replace(emojiStrip.regex, '');
|
|
}
|
|
|
|
emojiArray = Object.keys(gemoji.unicode);
|
|
emojiPattern = '(' + emojiArray.join('|') + ')+';
|
|
emojiRegex = new RegExp(emojiPattern, 'g');
|
|
|
|
emojiStrip.emoji = emojiArray;
|
|
emojiStrip.regex = new RegExp(emojiPattern, 'g');
|
|
|
|
module.exports = emojiStrip;
|