nemo-observable-util
Advanced tools
Comparing version 5.3.3 to 5.3.4
@@ -346,4 +346,5 @@ 'use strict'; | ||
} | ||
} finally { | ||
} catch (err) { | ||
end(); | ||
throw err; | ||
} | ||
@@ -350,0 +351,0 @@ |
@@ -305,4 +305,5 @@ 'use strict'; | ||
} | ||
} finally { | ||
} catch (err) { | ||
end(); | ||
throw err; | ||
} | ||
@@ -309,0 +310,0 @@ |
@@ -342,4 +342,5 @@ var connectionStore = new WeakMap(); | ||
} | ||
} finally { | ||
} catch (err) { | ||
end(); | ||
throw err; | ||
} | ||
@@ -346,0 +347,0 @@ |
@@ -301,4 +301,5 @@ const connectionStore = new WeakMap(); | ||
} | ||
} finally { | ||
} catch (err) { | ||
end(); | ||
throw err; | ||
} | ||
@@ -305,0 +306,0 @@ |
{ | ||
"name": "nemo-observable-util", | ||
"version": "5.3.3", | ||
"version": "5.3.4", | ||
"description": "Simple transparent reactivity with 100% language coverage. Made with ES6 Proxies.", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs.es5.js", |
@@ -63,9 +63,3 @@ declare module 'nemo-observable-util' { | ||
const action: IActionFactory; | ||
function asyncAction<F extends Function>(fn: F): F; | ||
function asyncAction<T>( | ||
target: Object, | ||
propertyKey: string | symbol, | ||
descriptor: TypedPropertyDescriptor<T> | ||
): TypedPropertyDescriptor<T> | void; | ||
function asyncAction(target: Object, propertyKey: string | symbol): void; | ||
const asyncAction: IActionFactory; | ||
function runInAction<T extends (...args: any) => any>(f: T): ReturnType<T>; | ||
@@ -72,0 +66,0 @@ const actionManager: any; |
129663
2970