@newkrok/nape-js 3.4.0 → 3.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -55058,6 +55058,20 @@ function createListClasses(spec) {
|
|
|
55058
55058
|
return result;
|
|
55059
55059
|
};
|
|
55060
55060
|
TypedList.prototype.__class__ = TypedList;
|
|
55061
|
+
TypedList.prototype[Symbol.iterator] = function() {
|
|
55062
|
+
const it = TypedIterator.get(this);
|
|
55063
|
+
return {
|
|
55064
|
+
next() {
|
|
55065
|
+
if (it.hasNext()) {
|
|
55066
|
+
return { value: it.next(), done: false };
|
|
55067
|
+
}
|
|
55068
|
+
return { value: void 0, done: true };
|
|
55069
|
+
},
|
|
55070
|
+
[Symbol.iterator]() {
|
|
55071
|
+
return this;
|
|
55072
|
+
}
|
|
55073
|
+
};
|
|
55074
|
+
};
|
|
55061
55075
|
const ns = getNamespace();
|
|
55062
55076
|
const iterName = typeName + "Iterator";
|
|
55063
55077
|
const listName = typeName + "List";
|
|
@@ -69530,7 +69544,7 @@ var zpp7 = nape66.__zpp;
|
|
|
69530
69544
|
zpp7.constraint.ZPP_PulleyJoint = ZPP_PulleyJoint;
|
|
69531
69545
|
|
|
69532
69546
|
// src/index.ts
|
|
69533
|
-
var VERSION = "3.
|
|
69547
|
+
var VERSION = "3.4.0";
|
|
69534
69548
|
// Annotate the CommonJS export names for ESM import in node:
|
|
69535
69549
|
0 && (module.exports = {
|
|
69536
69550
|
AABB,
|