Files
red_de_investigacion_front/node_modules/astral-regex/index.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

5 lines
160 B
JavaScript

'use strict';
const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]';
module.exports = opts => opts && opts.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g');