DIR: /proc/1991108/root/usr/share/node_modules/astral-regex/ |
Current File : //proc/1991108/root/usr/share/node_modules/astral-regex/index.js |
'use strict'; const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]'; const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g'); module.exports = astralRegex; |