UNPKG

osmosis

Version:
16 lines (14 loc) 271 B
/** * Stop an Osmosis instance. * * @function stop * @memberof Command * @instance */ module.exports = function () { this.instance.queue.pop(); this.pause(); this.instance.stopped = true; this.instance.paused = true; this.debug('stopping'); };