UNPKG

service-model

Version:

An object oriented web service framework inspired by Windows Communication Foundation.

11 lines (10 loc) 332 B
/** * Escapes a string for an exact match in a regular expression. * @param str String to escape * @hidden */ function escape(str) { // From http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); } exports.escape = escape;