(data, options)
| 86 | }; |
| 87 | |
| 88 | function Parallel(data, options) { |
| 89 | this.data = data; |
| 90 | this.options = extend(defaults, options); |
| 91 | this.operation = new Operation(); |
| 92 | this.operation.resolve(null, this.data); |
| 93 | this.requiredScripts = []; |
| 94 | this.requiredFunctions = []; |
| 95 | } |
| 96 | |
| 97 | // static method |
| 98 | Parallel.isSupported = function() { |