Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "enque", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Run asynchonous functions in succession while potentially operating on the same data.", | ||
@@ -5,0 +5,0 @@ "main": "enQue.js", |
@@ -47,4 +47,4 @@ # enQue.js | ||
// For the purpose of these examples, assume each function is asynchronous and you don't know when it will finish execution. | ||
// When operating on data it is important to remember that the data must not be a primitive. If you must operate on just a primitive | ||
// set it to an attribute to an object. for example if you need to operate on a `Number` you can do `que.run({data.number=17})`. | ||
// When operating on the data it is important to remember that it must not be a primitive. If you must operate on just a primitive | ||
// set it to an attribute on an object. for example if you need to operate on a `Number` you can do `que.run({data.number=17})`. | ||
@@ -51,0 +51,0 @@ Que = require('enQue') |
13195