astro-ghostcms/.pnpm-store/v3/files/ee/9fef987cb80627e4f58deacb82e...

6 lines
157 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
module.exports = function isLeadingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xD800 && charCode <= 0xDBFF;
};