mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-08 03:50:13 +08:00
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports = function isTrailingSurrogate(charCode) {
|
||
|
|
return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
|
||
|
|
};
|