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

Commit ada16a5

Browse files
committed
bindings.js: removing unused parameter
1 parent 9bcfe02 commit ada16a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kimchi/js/bindings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ var js_class_vector_of_rust_vector = function (v, klass) {
471471
// return v.map(klass.__wrap)
472472
var len = v.length;
473473
var res = new Array(len);
474-
for (var i = 0, pos = 0; i < len; i++) {
474+
for (var i = 0; i < len; i++) {
475475
// Beware: the caller may need to add finalizers to these.
476476
res[i] = klass.__wrap(v[i]);
477477
}

0 commit comments

Comments
 (0)