NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/astral-regex/index.js

5 lines
160 B
Java
Raw Normal View History

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