| Current Path : /var/www/recommendations/www/node_modules/validator/es/lib/util/ |
| Current File : /var/www/recommendations/www/node_modules/validator/es/lib/util/multilineRegex.js |
/**
* Build RegExp object from an array
* of multiple/multi-line regexp parts
*
* @param {string[]} parts
* @param {string} flags
* @return {object} - RegExp object
*/
export default function multilineRegexp(parts, flags) {
var regexpAsStringLiteral = parts.join('');
return new RegExp(regexpAsStringLiteral, flags);
}