Skip to content

Commit 16ffa1c

Browse files
committed
fix: fix function call order in after util
1 parent 193a4e0 commit 16ffa1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/nativescript/util/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ export function before(original, thisArg, wrap) {
8888

8989
export function after(original, thisArg, wrap) {
9090
return function(...args) {
91-
wrap.call(null, ...args)
9291
original.call(thisArg, ...args)
92+
wrap.call(null, ...args)
9393
}
9494
}
9595

0 commit comments

Comments
 (0)