isaacscript-common 1.0.550 → 1.0.551

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.
@@ -1,5 +1,6 @@
1
1
  /// <reference types="isaac-typescript-definitions" />
2
2
  /// <reference types="typescript-to-lua/language-extensions" />
3
+ export declare function arrayCombine<T>(array1: T[], array2: T[]): T[];
3
4
  export declare function arrayEmpty<T>(array: T[]): void;
4
5
  /** Helper function for determining if two arrays contain the exact same elements. */
5
6
  export declare function arrayEquals<T>(array1: T[], array2: T[]): boolean;
@@ -27,6 +27,20 @@ function ____exports.getRandomArrayIndex(self, array, seed)
27
27
  local randomIndex = getRandomInt(nil, 0, #array - 1, seed)
28
28
  return randomIndex
29
29
  end
30
+ function ____exports.arrayCombine(self, array1, array2)
31
+ return {
32
+ table.unpack(
33
+ __TS__ArrayConcat(
34
+ {
35
+ table.unpack(array1)
36
+ },
37
+ {
38
+ table.unpack(array2)
39
+ }
40
+ )
41
+ )
42
+ }
43
+ end
30
44
  function ____exports.arrayEmpty(self, array)
31
45
  __TS__ArraySplice(array, 0, #array)
32
46
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "1.0.550",
3
+ "version": "1.0.551",
4
4
  "description": "Helper functions for IsaacScript mods",
5
5
  "keywords": [
6
6
  "isaac",