thelounge/client/js/helpers/ircmessageparser/findEmoji.js
2019-11-25 20:12:58 +02:00

21 lines
321 B
JavaScript

"use strict";
const emojiRegExp = require("emoji-regex")();
function findEmoji(text) {
const result = [];
let match;
while ((match = emojiRegExp.exec(text))) {
result.push({
start: match.index,
end: match.index + match[0].length,
emoji: match[0],
});
}
return result;
}
module.exports = findEmoji;