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.
11 lines
345 B
11 lines
345 B
/**
|
|
* @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")
|
|
};
|
|
|