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

5 lines
160 B
JavaScript
Raw Permalink Normal View History

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