isTrailingSurrogate.js 158 B

12345
  1. 'use strict';
  2. module.exports = function isTrailingSurrogate(charCode) {
  3. return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
  4. };