(text)
| 4195 | |
| 4196 | var userProvidedKeyEscapeRegex = /\/(?!\/)/g; |
| 4197 | function escapeUserProvidedKey(text) { |
| 4198 | return ('' + text).replace(userProvidedKeyEscapeRegex, '//'); |
| 4199 | } |
| 4200 | |
| 4201 | /** |
| 4202 | * PooledClass representing the bookkeeping associated with performing a child |
no outgoing calls
no test coverage detected