main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
367 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @author Toru Nagashima <https://github.com/mysticatea>
|
---|
3 | */
|
---|
4 | "use strict";
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * Check whether a given character is an emoji modifier.
|
---|
8 | * @param {number} code The character code to check.
|
---|
9 | * @returns {boolean} `true` if the character is an emoji modifier.
|
---|
10 | */
|
---|
11 | module.exports = function isEmojiModifier(code) {
|
---|
12 | return code >= 0x1F3FB && code <= 0x1F3FF;
|
---|
13 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.