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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. 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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "narrow-emojis",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Emojis with narrow width.",
5
5
  "homepage": "https://github.com/fisker/narrow-emojis#readme",
6
6
  "bugs": {