@helpers4/all 2.0.0-alpha.10 → 2.0.0-alpha.14
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 +4 -1
- package/llms.txt +4902 -0
- package/meta/build.json +4 -3
- package/meta/packages.json +13 -12
- package/package.json +15 -13
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 {
|
|
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
|
|
@@ -45,6 +46,7 @@ This package includes all the following helpers4 categories:
|
|
|
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
47
|
| date | [@helpers4/date](https://www.npmjs.com/package/@helpers4/date) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/date) | date utilities |
|
|
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 |
|
|
49
|
+
| math | [@helpers4/math](https://www.npmjs.com/package/@helpers4/math) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/math) | math utilities |
|
|
48
50
|
| number | [@helpers4/number](https://www.npmjs.com/package/@helpers4/number) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/number) | number utilities |
|
|
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 |
|
|
@@ -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`
|