Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 443a43c

Browse files
committed
fix(parse): missing call to get the correct scope
1 parent cc0c099 commit 443a43c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ function getterFn(path, options, fullExp) {
946946
return fn;
947947
}
948948

949-
var objectValueOf = Object.prototype.valueOf;
949+
var objectValueOf = Object.prototype.valueOf.call;
950950

951951
function getValueOf(value) {
952952
return isFunction(value.valueOf) ? value.valueOf() : objectValueOf(value);

0 commit comments

Comments
 (0)