This commit is contained in:
Joao Moreno
2018-02-22 10:22:10 +01:00
parent 03f92dde0a
commit ca58c21bfc
9 changed files with 16 additions and 26 deletions

View File

@@ -78,7 +78,7 @@ function _throttle<T>(fn: Function, key: string): Function {
export const throttle = decorate(_throttle);
function _sequentialize<T>(fn: Function, key: string): Function {
function _sequentialize(fn: Function, key: string): Function {
const currentKey = `__$sequence$${key}`;
return function (this: any, ...args: any[]) {