UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

5 lines (4 loc) 260 B
function _cloneRegExp(pattern) { return new RegExp(pattern.source, (pattern.global ? 'g' : '') + (pattern.ignoreCase ? 'i' : '') + (pattern.multiline ? 'm' : '') + (pattern.sticky ? 'y' : '') + (pattern.unicode ? 'u' : '')); } module.exports = _cloneRegExp;