Compare commits

...

2 Commits

Author SHA1 Message Date
b6d1c3c083 3.0.9 2019-04-10 12:56:56 +02:00
6e6cfbadbd fix(core): update 2019-04-10 12:56:55 +02:00
3 changed files with 8 additions and 8 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"version": "3.0.8", "version": "3.0.9",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@pushrocks/tapbundle", "name": "@pushrocks/tapbundle",
"private": false, "private": false,
"version": "3.0.8", "version": "3.0.9",
"description": "tap bundled for tapbuffer", "description": "tap bundled for tapbuffer",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",

View File

@ -43,11 +43,11 @@ export class TapTools {
} }
public async checkIterationLeak(iterationfuncArg: IPromiseFunc) { public async checkIterationLeak(iterationfuncArg: IPromiseFunc) {
if (process.version.startsWith('v11')) { if (process.version.startsWith('v11')) {
console.log('iteration leakage checks disabled for now on version 11 due to low performance'); console.log('iteration leakage checks disabled for now on version 11 due to low performance');
} else { } else {
await plugins.leakage.iterate.async(iterationfuncArg); await plugins.leakage.iterate.async(iterationfuncArg);
} }
} }
public async returnError(throwingFuncArg: IPromiseFunc) { public async returnError(throwingFuncArg: IPromiseFunc) {
@ -60,7 +60,7 @@ export class TapTools {
return funcErr; return funcErr;
} }
public defer () { public defer() {
return plugins.smartpromise.defer(); return plugins.smartpromise.defer();
} }
} }