Urara-Blog/node_modules/.pnpm-store/v3/files/ee/9fef987cb80627e4f58deacb82e19472b3859045ff9a5d05b7dbe6e87d86465d28f8ee6378fcf82253a2b0553d84ebf01609920c47bbc75f5d89e99bb9a839
2022-08-14 01:14:53 +08:00

5 lines
157 B
Text

'use strict';
module.exports = function isLeadingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xD800 && charCode <= 0xDBFF;
};