UNPKG

@aws/pdk

Version:

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

3 lines 243 B
export default function _cloneRegExp(pattern) { return new RegExp(pattern.source, (pattern.global ? 'g' : '') + (pattern.ignoreCase ? 'i' : '') + (pattern.multiline ? 'm' : '') + (pattern.sticky ? 'y' : '') + (pattern.unicode ? 'u' : '')); }