wrangler-action/node_modules/es-abstract/helpers/isLeadingSurrogate.js
2023-08-07 15:11:15 -05:00

5 lines
157 B
JavaScript

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