()
| 6 | var watch = require('glob-watcher'); |
| 7 | |
| 8 | function Gulp() { |
| 9 | Undertaker.call(this); |
| 10 | |
| 11 | // Bind the functions for destructuring |
| 12 | this.watch = this.watch.bind(this); |
| 13 | this.task = this.task.bind(this); |
| 14 | this.series = this.series.bind(this); |
| 15 | this.parallel = this.parallel.bind(this); |
| 16 | this.registry = this.registry.bind(this); |
| 17 | this.tree = this.tree.bind(this); |
| 18 | this.lastRun = this.lastRun.bind(this); |
| 19 | this.src = this.src.bind(this); |
| 20 | this.dest = this.dest.bind(this); |
| 21 | this.symlink = this.symlink.bind(this); |
| 22 | } |
| 23 | util.inherits(Gulp, Undertaker); |
| 24 | |
| 25 | Gulp.prototype.src = vfs.src; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…