tsu 2.2.0 → 2.2.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -372,10 +372,10 @@ declare function isEmpty(str: string): boolean;
372
372
  * Splits a string into two at a specified index.
373
373
  *
374
374
  * @param i - The position to split at.
375
- * @param array - The string.
375
+ * @param str - The string.
376
376
  * @returns The tuple of strings before and after the split.
377
377
  */
378
- declare function splitStrAt(i: number, s: string): [string, string];
378
+ declare function splitStrAt(i: number, str: string): [string, string];
379
379
  /**
380
380
  * Converts a kebab case string to camel case.
381
381
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsu",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "type": "module",
5
5
  "description": "TypeScript utilities",
6
6
  "license": "MIT",