@trenskow/buffered-promise 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,7 +10,7 @@ const BufferedPromise = require('buffered-promise');
10
10
 
11
11
  const promise = new BufferedPromise(new Promise((resolve, reject) => {
12
12
  /* Your promise */
13
- }))
13
+ }));
14
14
  ````
15
15
 
16
16
  # License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trenskow/buffered-promise",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Simple custom promise for buffering promise results.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,6 +24,6 @@
24
24
  "@trenskow/custom-promise": "^0.9.1"
25
25
  },
26
26
  "devDependencies": {
27
- "eslint": "^7.5.0"
27
+ "eslint": "^7.32.0"
28
28
  }
29
29
  }