github-pages-deploy-action/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js

14 lines
449 B
JavaScript
Raw Normal View History

2020-05-15 05:33:08 +08:00
/**
* @author Toru Nagashima <https://github.com/mysticatea>
*/
2020-03-07 11:45:40 +08:00
"use strict";
/**
* Check whether a given character is a combining mark or not.
2020-05-15 05:33:08 +08:00
* @param {number} codePoint The character code to check.
* @returns {boolean} `true` if the character belongs to the category, any of `Mc`, `Me`, and `Mn`.
2020-03-07 11:45:40 +08:00
*/
2020-05-15 05:33:08 +08:00
module.exports = function isCombiningCharacter(codePoint) {
return /^[\p{Mc}\p{Me}\p{Mn}]$/u.test(String.fromCodePoint(codePoint));
2020-03-07 11:45:40 +08:00
};