NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/astral-regex/index.js
2023-09-14 14:47:11 +08: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');