FLUJOS/VISUALIZACION/node_modules/es-abstract/helpers/isTrailingSurrogate.js
2025-11-07 00:06:12 +01:00

5 lines
158 B
JavaScript
Executable file

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