Socket
Socket
Sign inDemoInstall

taskgroup

Package Overview
Dependencies
Maintainers
1
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taskgroup - npm Package Compare versions

Comparing version 3.3.8 to 3.3.9

22

out/lib/taskgroup.js
// Generated by CoffeeScript 1.7.1
(function() {
var EventEmitter, Task, TaskGroup, ambi, domain, events, setImmediate, _ref,
var EventEmitter, Task, TaskGroup, ambi, domain, events, extendOnClass, setImmediate, _ref,
__hasProp = {}.hasOwnProperty,

@@ -22,5 +22,13 @@ __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },

extendOnClass = require('extendonclass').extendOnClass;
Task = (function(_super) {
__extends(Task, _super);
Task.extend = extendOnClass;
Task.create = function(a, b, c, d, e, f, g) {
return new Task(a, b, d, e, f, g);
};
Task.prototype.type = 'task';

@@ -73,2 +81,5 @@

arg = args[_i];
if (!arg) {
continue;
}
switch (typeof arg) {

@@ -203,2 +214,8 @@ case 'string':

TaskGroup.extend = extendOnClass;
TaskGroup.create = function(a, b, c, d, e, f, g) {
return new TaskGroup(a, b, d, e, f, g);
};
TaskGroup.prototype.type = 'taskgroup';

@@ -275,2 +292,5 @@

arg = args[_i];
if (!arg) {
continue;
}
switch (typeof arg) {

@@ -277,0 +297,0 @@ case 'string':

14

package.json
{
"title": "TaskGroup",
"name": "taskgroup",
"version": "3.3.8",
"version": "3.3.9",
"description": "Group together synchronous and asynchronous tasks and execute them with support for concurrency, naming, and nesting.",

@@ -18,3 +18,4 @@ "homepage": "https://github.com/bevry/taskgroup",

"paypal": "QB8GQPZAH84N6",
"bitcoin": "https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a"
"bitcoin": "https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a",
"wishlist": "http://amzn.com/w/2F8TXKSNAFG4V"
},

@@ -51,10 +52,11 @@ "keywords": [

"dependencies": {
"ambi": "~2.1.5"
"ambi": "~2.1.5",
"extendonclass": "~1.0.0"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"joe": "~1.3.2",
"joe": "~1.4.0",
"joe-reporter-console": "~1.2.1",
"chai": "~1.9.0",
"projectz": "~0.3.9"
"chai": "~1.9.1",
"projectz": "~0.3.11"
},

@@ -61,0 +63,0 @@ "directories": {

@@ -18,2 +18,3 @@ <!-- TITLE/ -->

[![BitCoin donate button](http://img.shields.io/bitcoin/donate.png?color=yellow)](https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a "Donate once-off to this project using BitCoin")
[![Wishlist browse button](http://img.shields.io/wishlist/browse.png?color=yellow)](http://amzn.com/w/2F8TXKSNAFG4V "Buy an item on our wishlist for us")

@@ -34,3 +35,3 @@ <!-- /BADGES -->

### [Node](http://nodejs.org/)
### [NPM](http://npmjs.org/)
- Use: `require('taskgroup')`

@@ -85,2 +86,3 @@ - Install: `npm install --save taskgroup`

[![BitCoin donate button](http://img.shields.io/bitcoin/donate.png?color=yellow)](https://coinbase.com/checkouts/9ef59f5479eec1d97d63382c9ebcb93a "Donate once-off to this project using BitCoin")
[![Wishlist browse button](http://img.shields.io/wishlist/browse.png?color=yellow)](http://amzn.com/w/2F8TXKSNAFG4V "Buy an item on our wishlist for us")

@@ -87,0 +89,0 @@ ### Contributors

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc