Skip to content

Commit 92a9f3b

Browse files
committed
[V8] Fix property access level
1 parent 83c5901 commit 92a9f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/V8/JSValue.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ extension JSValue: JavaScript.JSValue {
6464
}
6565

6666
extension JSValue {
67-
subscript(_ key: String) -> JSValue? {
67+
public subscript(_ key: String) -> JSValue? {
6868
guard isObject else {
6969
return nil
7070
}

0 commit comments

Comments
 (0)