summaryrefslogtreecommitdiffstats
path: root/scripts/astral-symbol-regex.js
blob: 402ec6a08711fd56549093a9a0ccd3c6a715ae23 (plain)
1
2
3
4
5
6
7
8
9
'use strict';

const regenerate = require('regenerate');

const regexAstralSymbol = regenerate()
	.addRange(0x010000, 0x10FFFF)
	.toString();

module.exports = regexAstralSymbol;