18460000105 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
..
es2015 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
README.md 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
RGI_Emoji.js 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
index.js 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
package.json 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois
text.js 0a606483d6 refactor(classes): 重构类转换ref插件 il y a 1 mois

README.md

emoji-regex Build status

emoji-regex offers a regular expression to match all emoji symbols and sequences (including textual representations of emoji) as per the Unicode Standard.

This repository contains a script that generates this regular expression based on Unicode data. Because of this, the regular expression can easily be updated whenever new emoji are added to the Unicode standard.

Installation

Via npm:

npm install emoji-regex

In Node.js:

```js const emojiRegex = require('emoji-regex/RGI_Emoji.js'); // Note: because the regular expression has the global flag set, this module // exports a function that returns the regex rather than exporting the regular // expression itself, to make it impossible to (accidentally) mutate the // original regular expression.

con