Files
lcbp3.np-dms.work/frontend/node_modules/es-abstract/helpers/isCodePoint.js
2025-09-21 20:29:15 +07:00

6 lines
142 B
JavaScript
Executable File

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