@helpers4/all 2.0.0-alpha.11 → 2.0.0-alpha.15

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/README.md CHANGED
@@ -17,7 +17,7 @@ This package provides access to all helpers4 utilities through dependencies:
17
17
  ```typescript
18
18
  // Install @helpers4/all, then use individual category packages
19
19
  import { equals, intersection } from '@helpers4/array';
20
- import { labelize, errorToReadableMessage } from '@helpers4/string';
20
+ import { titleCase, errorToReadableMessage } from '@helpers4/string';
21
21
  import { cleanPath, withTrailingSlash } from '@helpers4/url';
22
22
  // ... and so on
23
23
  ```
@@ -29,6 +29,7 @@ This package includes all the following helpers4 categories:
29
29
  - **@helpers4/array**: array utilities
30
30
  - **@helpers4/date**: date utilities
31
31
  - **@helpers4/function**: function utilities
32
+ - **@helpers4/math**: math utilities
32
33
  - **@helpers4/number**: number utilities
33
34
  - **@helpers4/object**: object utilities
34
35
  - **@helpers4/observable**: observable utilities
@@ -43,14 +44,15 @@ This package includes all the following helpers4 categories:
43
44
  | Name | Package | Source Code | Description |
44
45
  |------|---------|-------------|-------------|
45
46
  | array | [@helpers4/array](https://www.npmjs.com/package/@helpers4/array) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/array) | Array manipulation utilities |
46
- | date | [@helpers4/date](https://www.npmjs.com/package/@helpers4/date) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/date) | date utilities |
47
+ | date | [@helpers4/date](https://www.npmjs.com/package/@helpers4/date) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/date) | Date and time utility functions |
47
48
  | function | [@helpers4/function](https://www.npmjs.com/package/@helpers4/function) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/function) | Function utilities and type guards |
48
- | number | [@helpers4/number](https://www.npmjs.com/package/@helpers4/number) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/number) | number utilities |
49
+ | math | [@helpers4/math](https://www.npmjs.com/package/@helpers4/math) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/math) | Mathematical utility functions and calculations |
50
+ | number | [@helpers4/number](https://www.npmjs.com/package/@helpers4/number) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/number) | Number utility functions and validation |
49
51
  | object | [@helpers4/object](https://www.npmjs.com/package/@helpers4/object) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/object) | Object manipulation utilities |
50
52
  | observable | [@helpers4/observable](https://www.npmjs.com/package/@helpers4/observable) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/observable) | Observable utilities and combinators |
51
53
  | promise | [@helpers4/promise](https://www.npmjs.com/package/@helpers4/promise) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/promise) | Promise utilities and error handling |
52
54
  | string | [@helpers4/string](https://www.npmjs.com/package/@helpers4/string) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/string) | String manipulation and formatting utilities |
53
- | type | [@helpers4/type](https://www.npmjs.com/package/@helpers4/type) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/type) | type utilities |
55
+ | type | [@helpers4/type](https://www.npmjs.com/package/@helpers4/type) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/type) | Type checking and validation utilities |
54
56
  | url | [@helpers4/url](https://www.npmjs.com/package/@helpers4/url) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/url) | URL parsing and manipulation utilities |
55
57
  | version | [@helpers4/version](https://www.npmjs.com/package/@helpers4/version) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/version) | Version string manipulation utilities |
56
58
 
@@ -61,6 +63,7 @@ You can also install individual categories if you prefer:
61
63
  - `pnpm install @helpers4/array`
62
64
  - `pnpm install @helpers4/date`
63
65
  - `pnpm install @helpers4/function`
66
+ - `pnpm install @helpers4/math`
64
67
  - `pnpm install @helpers4/number`
65
68
  - `pnpm install @helpers4/object`
66
69
  - `pnpm install @helpers4/observable`