(str)
| 710 | |
| 711 | // convert a string to a regexp that matches exactly that string. |
| 712 | function pprofQuoteMeta(str) { |
| 713 | return '^' + str.replace(/([\\\.?+*\[\](){}|^$])/g, '\\$1') + '$'; |
| 714 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…