Sha256: 3278139db4feda5408a03775c2bb02cfd5e0b92c82e88df6eb6cd4a695e782c2
Contents?: true
Size: 397 Bytes
Versions: 100
Compression:
Stored size: 397 Bytes
Contents
/** * @author Toru Nagashima <https://github.com/mysticatea> */ "use strict"; /** * Check whether a given character is a regional indicator symbol. * @param {number} code The character code to check. * @returns {boolean} `true` if the character is a regional indicator symbol. */ module.exports = function isRegionalIndicatorSymbol(code) { return code >= 0x1F1E6 && code <= 0x1F1FF; };
Version data entries
100 entries across 90 versions & 3 rubygems