mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:19:30 +08:00
5 lines
142 B
Text
5 lines
142 B
Text
'use strict';
|
|
|
|
module.exports = function isCodePoint(cp) {
|
|
return typeof cp === 'number' && cp >= 0 && cp <= 0x10FFFF && (cp | 0) === cp;
|
|
};
|