@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.js
CHANGED
|
@@ -54970,6 +54970,20 @@ function createListClasses(spec) {
|
|
|
54970
54970
|
return result;
|
|
54971
54971
|
};
|
|
54972
54972
|
TypedList.prototype.__class__ = TypedList;
|
|
54973
|
+
TypedList.prototype[Symbol.iterator] = function() {
|
|
54974
|
+
const it = TypedIterator.get(this);
|
|
54975
|
+
return {
|
|
54976
|
+
next() {
|
|
54977
|
+
if (it.hasNext()) {
|
|
54978
|
+
return { value: it.next(), done: false };
|
|
54979
|
+
}
|
|
54980
|
+
return { value: void 0, done: true };
|
|
54981
|
+
},
|
|
54982
|
+
[Symbol.iterator]() {
|
|
54983
|
+
return this;
|
|
54984
|
+
}
|
|
54985
|
+
};
|
|
54986
|
+
};
|
|
54973
54987
|
const ns = getNamespace();
|
|
54974
54988
|
const iterName = typeName + "Iterator";
|
|
54975
54989
|
const listName = typeName + "List";
|
|
@@ -69442,7 +69456,7 @@ var zpp7 = nape66.__zpp;
|
|
|
69442
69456
|
zpp7.constraint.ZPP_PulleyJoint = ZPP_PulleyJoint;
|
|
69443
69457
|
|
|
69444
69458
|
// src/index.ts
|
|
69445
|
-
var VERSION = "3.
|
|
69459
|
+
var VERSION = "3.4.0";
|
|
69446
69460
|
export {
|
|
69447
69461
|
AABB,
|
|
69448
69462
|
AngleJoint,
|