File size: 203 Bytes
bc20498
 
 
 
 
 
1
2
3
4
5
6
7
'use strict';
const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]';

const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g');

module.exports = astralRegex;