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

6 lines
158 B
Plaintext
Raw Permalink Normal View History

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