@stryke/convert 0.1.2 → 0.1.3

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.
@@ -3,6 +3,7 @@ import type { Nullable } from "@stryke/types/utilities";
3
3
  /**
4
4
  * Convert `Arrayable<T>` to `Array<T>`
5
5
  *
6
- * @category Array
6
+ * @param array - The `Arrayable<T>` to convert
7
+ * @returns An `Array<T>` containing the elements of the input
7
8
  */
8
9
  export declare function toArray<T>(array?: Nullable<Arrayable<T>>): Array<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/convert",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "A utility package that helps convert between different data types.",
6
6
  "repository": {
@@ -11,8 +11,8 @@
11
11
  "private": false,
12
12
  "publishConfig": { "access": "public" },
13
13
  "dependencies": {
14
- "@stryke/type-checks": ">=0.1.2",
15
- "@stryke/types": ">=0.7.1"
14
+ "@stryke/type-checks": ">=0.1.3",
15
+ "@stryke/types": ">=0.7.2"
16
16
  },
17
17
  "devDependencies": {},
18
18
  "sideEffects": false,