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

5 lines
142 B
JavaScript
Executable file

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