install-nix-action/node_modules/astral-regex/index.js

5 lines
160 B
JavaScript
Raw Permalink Normal View History

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