LeeThanh's picture
Upload 3012 files
5641073
raw
history blame
No virus
142 Bytes
'use strict';
module.exports = function isCodePoint(cp) {
return typeof cp === 'number' && cp >= 0 && cp <= 0x10FFFF && (cp | 0) === cp;
};