mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 01:39:30 +08:00
5 lines
157 B
Text
5 lines
157 B
Text
'use strict';
|
|
|
|
module.exports = function isLeadingSurrogate(charCode) {
|
|
return typeof charCode === 'number' && charCode >= 0xD800 && charCode <= 0xDBFF;
|
|
};
|