mirror of
https://github.com/nodejs/node.git
synced 2025-05-12 01:46:53 +00:00

PR-URL: https://github.com/nodejs/node/pull/22134 Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
15 lines
471 B
JavaScript
15 lines
471 B
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
*/
|
|
"use strict";
|
|
|
|
/**
|
|
* Check whether given two characters are a surrogate pair.
|
|
* @param {number} lead The code of the lead character.
|
|
* @param {number} tail The code of the tail character.
|
|
* @returns {boolean} `true` if the character pair is a surrogate pair.
|
|
*/
|
|
module.exports = function isSurrogatePair(lead, tail) {
|
|
return lead >= 0xD800 && lead < 0xDC00 && tail >= 0xDC00 && tail < 0xE000;
|
|
};
|