(value)
| 19 | var self = this; |
| 20 | |
| 21 | function done(value) { |
| 22 | if (callback) { |
| 23 | setTimeout(function () { |
| 24 | callback(undefined, value); |
| 25 | }, 0); |
| 26 | return true; |
| 27 | } else { |
| 28 | return value; |
| 29 | } |
| 30 | } // Allow subclasses to massage the input prior to running |
| 31 | |
| 32 | |
| 33 | oldString = this.castInput(oldString); |
no outgoing calls
no test coverage detected