blob: 002930accf80e17560d182ff69a0dd313c2b3f9e [file] [log] [blame]
'use strict';
module.exports = function isTrailingSurrogate(charCode) {
return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
};