persona-community-5/.pnpm-store/v3/files/cc/b1c01d6a55ef32bdc4e75ee8bda298caa571c8fadcc8784d33c4109dceb23a48c73c3daea22574a3388d4214558652ddca0008c347178e66e0ba3807bf5378
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
367 B
Plaintext

/**
* @author Toru Nagashima <https://github.com/mysticatea>
*/
"use strict";
/**
* Check whether a given character is an emoji modifier.
* @param {number} code The character code to check.
* @returns {boolean} `true` if the character is an emoji modifier.
*/
module.exports = function isEmojiModifier(code) {
return code >= 0x1F3FB && code <= 0x1F3FF;
};