blob: acda02e9937893780f1ad28902b0352cf1d17d50 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function isCodePoint(cp) {
4 return typeof cp === 'number' && cp >= 0 && cp <= 0x10FFFF && (cp | 0) === cp;
5};