Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix error
  • Loading branch information
j-f1 committed Aug 4, 2020
commit b3574a0a5d4f6b4ee0f2c9c5a167c9d18848be52
2 changes: 1 addition & 1 deletion Sources/JavaScriptKit/JSArrayRef.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ extension JSArrayRef: RandomAccessCollection {
}

public subscript(position: Int) -> JSValue {
ref.get(position)
ref[position]
}

public var startIndex: Int { 0 }
Expand Down