revere.dev/safelock/dashboard/node_modules/es-abstract/helpers/isTrailingSurrogate.js

6 lines
158 B
JavaScript
Raw Normal View History

2024-07-01 21:55:25 +02:00
'use strict';
module.exports = function isTrailingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
};