narrow-emojis 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -232,6 +232,6 @@ export const narrowEmojiRegexp =
|
|
|
232
232
|
|
|
233
233
|
export const isNarrowEmojiCharacter = (character) =>
|
|
234
234
|
narrowEmojiRegexp.test(character)
|
|
235
|
-
const narrowEmojiCodePointsSet = new Set(narrowEmojiCodePoints)
|
|
235
|
+
const narrowEmojiCodePointsSet = /* @__PURE__ */ new Set(narrowEmojiCodePoints)
|
|
236
236
|
export const isNarrowEmojiCodePoint = (codePoint) =>
|
|
237
237
|
narrowEmojiCodePointsSet.has(codePoint)
|