@luminix/support 0.2.1 → 0.3.0

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/support.js CHANGED
@@ -5425,7 +5425,7 @@ class Qp {
5425
5425
  padRight(t, r, n) {
5426
5426
  return Pp(t, r, n);
5427
5427
  }
5428
- readable(t) {
5428
+ human(t) {
5429
5429
  return Xs(Un(t));
5430
5430
  }
5431
5431
  studly(t) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminix/support",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "module": "dist/support.js",
5
5
  "types": "types/index.d.ts",
6
6
  "type": "module",
package/types/Str.d.ts CHANGED
@@ -13,7 +13,7 @@ declare class StrStatic {
13
13
  padBoth(string: string, length: number, chars?: string): string;
14
14
  padLeft(string: string, length: number, chars?: string): string;
15
15
  padRight(string: string, length: number, chars?: string): string;
16
- readable(string: string): string;
16
+ human(string: string): string;
17
17
  studly(string: string): string;
18
18
  snake(string: string): string;
19
19
  title(string: string): string;