blob: 002930accf80e17560d182ff69a0dd313c2b3f9e [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function isTrailingSurrogate(charCode) {
4 return typeof charCode === 'number' && charCode >= 0xDC00 && charCode <= 0xDFFF;
5};