codeql-action/node_modules/slice-ansi/node_modules/astral-regex/index.js
2020-05-13 11:13:27 +01:00

6 lines
203 B
JavaScript

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