1.0.3
Make sure for...in works with can-observable-array instances
This patch release fixes an issue where ownKeys returned an array with duplicated keys causing the following code to throw an exception
import { ObservableArray } from "//unpkg.com/can@6/core.mjs";
class List extends ObservableArray {}
let list = new List();
for (var name in list) {
console.log(name);
}