Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
es-abstract
/
helpers
/
isCodePoint.js
blob: acda02e9937893780f1ad28902b0352cf1d17d50 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
module
.
exports
=
function
isCodePoint
(
cp
)
{
return
typeof
cp
===
'number'
&&
cp
>=
0
&&
cp
<=
0x10FFFF
&&
(
cp
|
0
)
===
cp
;
};