astro-ghostcms/.pnpm-store/v3/files/9e/1f8154db5a86311a12bc3176ec9...

6 lines
158 B
Plaintext

'use strict';
module.exports = function isTrailingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
};