Viewing File: /home/ubuntu/misabloom-frontend-base/node_modules/es-abstract/helpers/isLeadingSurrogate.js

'use strict';

module.exports = function isLeadingSurrogate(charCode) {
	return typeof charCode === 'number' && charCode >= 0xD800 && charCode <= 0xDBFF;
};
Back to Directory File Manager