astro-ghostcms/.pnpm-store/v3/files/9f/4fa8b28074522675976f7a76898...

6 lines
142 B
Plaintext

'use strict';
module.exports = function isCodePoint(cp) {
return typeof cp === 'number' && cp >= 0 && cp <= 0x10FFFF && (cp | 0) === cp;
};