@woosh/meep-engine 2.126.60 → 2.126.61

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Pure JavaScript game engine. Fully featured and production ready.",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.126.60",
8
+ "version": "2.126.61",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -1,9 +1,9 @@
1
1
  /**
2
- * Adds element to the end of the array, iff the element is not present in the array already
2
+ * Adds an element to the end of the array, iff the element is not present in the array already
3
3
  * @template T
4
4
  * @param {T[]} array where
5
5
  * @param {T} element what to add
6
- * @return {boolean} true iff added, false if array already contains this element
6
+ * @return {boolean} true iff added, false if the array already contains this element
7
7
  */
8
8
  export function array_push_if_unique<T>(array: T[], element: T): boolean;
9
9
  //# sourceMappingURL=array_push_if_unique.d.ts.map
@@ -1,11 +1,11 @@
1
1
  import { assert } from "../../assert.js";
2
2
 
3
3
  /**
4
- * Adds element to the end of the array, iff the element is not present in the array already
4
+ * Adds an element to the end of the array, iff the element is not present in the array already
5
5
  * @template T
6
6
  * @param {T[]} array where
7
7
  * @param {T} element what to add
8
- * @return {boolean} true iff added, false if array already contains this element
8
+ * @return {boolean} true iff added, false if the array already contains this element
9
9
  */
10
10
  export function array_push_if_unique(array, element) {
11
11
  assert.isArray(array, 'array');