hexo/node_modules/es-abstract/helpers/isTrailingSurrogate.js

6 lines
158 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
module.exports = function isTrailingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
};