blob: 651177d40f1de3bb6b02e34ec4df14931eb2bc9f [file] [log] [blame]
Yang Guo4fd355c2019-09-19 08:59:031'use strict';
2const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]';
3
Tim van der Lippeb97da6b2021-02-12 14:32:534const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g');
5
6module.exports = astralRegex;