You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
345 B
12 lines
345 B
3 years ago
|
/**
|
||
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
||
|
*/
|
||
|
"use strict";
|
||
|
|
||
|
module.exports = {
|
||
|
isCombiningCharacter: require("./is-combining-character"),
|
||
|
isEmojiModifier: require("./is-emoji-modifier"),
|
||
|
isRegionalIndicatorSymbol: require("./is-regional-indicator-symbol"),
|
||
|
isSurrogatePair: require("./is-surrogate-pair")
|
||
|
};
|