2020-08-25 23:57:08 +00:00
|
|
|
'use strict';
|
|
|
|
const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]';
|
|
|
|
|
2021-02-26 03:58:33 +00:00
|
|
|
const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g');
|
|
|
|
|
|
|
|
module.exports = astralRegex;
|