el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
30 lines (23 loc) • 660 B
JavaScript
;
const isRegexp = require('is-regexp');
const flagMap = {
global: 'g',
ignoreCase: 'i',
multiline: 'm',
dotAll: 's',
sticky: 'y',
unicode: 'u'
};
module.exports = (regexp, options = {}) => {
if (!isRegexp(regexp)) {
throw new TypeError('Expected a RegExp instance');
}
const flags = Object.keys(flagMap).map(flag => (
(typeof options[flag] === 'boolean' ? options[flag] : regexp[flag]) ? flagMap[flag] : ''
)).join('');
const clonedRegexp = new RegExp(options.source || regexp.source, flags);
clonedRegexp.lastIndex = typeof options.lastIndex === 'number' ?
options.lastIndex :
regexp.lastIndex;
return clonedRegexp;
};