Sha256: 1a71cc0f03a1f928979af43a736b2ce937935b82d876d0fa38277b4285f3ef74

Contents?: true

Size: 756 Bytes

Versions: 27

Compression:

Stored size: 756 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const Hook = require("./Hook");
const HookCodeFactory = require("./HookCodeFactory");

class AsyncSeriesHookCodeFactory extends HookCodeFactory {
	content({ onError, onDone }) {
		return this.callTapsSeries({
			onError: (i, err, next, doneBreak) => onError(err) + doneBreak(true),
			onDone
		});
	}
}

const factory = new AsyncSeriesHookCodeFactory();

class AsyncSeriesHook extends Hook {
	compile(options) {
		factory.setup(this, options);
		return factory.create(options);
	}
}

Object.defineProperties(AsyncSeriesHook.prototype, {
	_call: { value: undefined, configurable: true, writable: true }
});

module.exports = AsyncSeriesHook;

Version data entries

27 entries across 26 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.18.0 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.18.2 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.16.1 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.15.2 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.18.4 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.18.1 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.14.0 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
tang-0.2.1 spec/tang_app/node_modules/tapable/lib/AsyncSeriesHook.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/tapable/lib/AsyncSeriesHook.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/tapable/lib/AsyncSeriesHook.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/tapable/lib/AsyncSeriesHook.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/tapable/lib/AsyncSeriesHook.js
tang-0.2.0 spec/tang_app/node_modules/tapable/lib/AsyncSeriesHook.js
tang-0.1.0 spec/tang_app/node_modules/tapable/lib/AsyncSeriesHook.js
tang-0.0.9 spec/tang_app/node_modules/tapable/lib/AsyncSeriesHook.js
enju_library-0.3.8 spec/dummy/node_modules/tapable/lib/AsyncSeriesHook.js
jester-data-8.0.0 node_modules/tapable/lib/AsyncSeriesHook.js