Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
es-abstract
/
helpers
/
isTrailingSurrogate.js
blob: 002930accf80e17560d182ff69a0dd313c2b3f9e [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
function
isTrailingSurrogate
(
charCode
)
{
return
typeof
charCode
===
'number'
&&
charCode
>=
0xDC00
&&
charCode
<=
0xDFFF
;
};