(value)
| 191 | var self = this; |
| 192 | |
| 193 | function done(value) { |
| 194 | if (callback) { |
| 195 | setTimeout(function () { |
| 196 | callback(undefined, value); |
| 197 | }, 0); |
| 198 | return true; |
| 199 | } else { |
| 200 | return value; |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | // Allow subclasses to massage the input prior to running |
| 205 | oldString = this.castInput(oldString); |
no outgoing calls
no test coverage detected