Created
February 21, 2012 21:23
-
-
Save BrandonZacharie/1879052 to your computer and use it in GitHub Desktop.
Revisions
-
BrandonZacharie created this gist
Feb 21, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ if (!String.toRegExp) String.toRegExp = function String_toRegExp(pattern, flags) { return new RegExp(pattern.replace(/[\[\]\\{}()+*?.$^|]/g, function (match) { return '\\' + match; }), flags); };