Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b6d1c3c083 | |||
6e6cfbadbd |
2
package-lock.json
generated
2
package-lock.json
generated
@ -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": {
|
||||||
|
@ -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",
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user