From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- alarm/node_modules/asynckit/lib/terminator.js | 29 --------------------------- 1 file changed, 29 deletions(-) delete mode 100644 alarm/node_modules/asynckit/lib/terminator.js (limited to 'alarm/node_modules/asynckit/lib/terminator.js') diff --git a/alarm/node_modules/asynckit/lib/terminator.js b/alarm/node_modules/asynckit/lib/terminator.js deleted file mode 100644 index d6eb992..0000000 --- a/alarm/node_modules/asynckit/lib/terminator.js +++ /dev/null @@ -1,29 +0,0 @@ -var abort = require('./abort.js') - , async = require('./async.js') - ; - -// API -module.exports = terminator; - -/** - * Terminates jobs in the attached state context - * - * @this AsyncKitState# - * @param {function} callback - final callback to invoke after termination - */ -function terminator(callback) -{ - if (!Object.keys(this.jobs).length) - { - return; - } - - // fast forward iteration index - this.index = this.size; - - // abort jobs - abort(this); - - // send back results we have so far - async(callback)(null, this.results); -} -- cgit