@helpers4/all 2.0.0-alpha.2 → 2.0.0-alpha.21
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/LICENSE.md +150 -650
- package/README.md +23 -17
- package/llms.txt +6909 -0
- package/meta/build.json +14 -6
- package/meta/packages.json +14 -12
- package/package.json +20 -16
package/README.md
CHANGED
|
@@ -16,8 +16,8 @@ This package provides access to all helpers4 utilities through dependencies:
|
|
|
16
16
|
|
|
17
17
|
```typescript
|
|
18
18
|
// Install @helpers4/all, then use individual category packages
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
19
|
+
import { equals, intersection } from '@helpers4/array';
|
|
20
|
+
import { titleCase, extractErrorMessage } from '@helpers4/string';
|
|
21
21
|
import { cleanPath, withTrailingSlash } from '@helpers4/url';
|
|
22
22
|
// ... and so on
|
|
23
23
|
```
|
|
@@ -27,8 +27,10 @@ import { cleanPath, withTrailingSlash } from '@helpers4/url';
|
|
|
27
27
|
This package includes all the following helpers4 categories:
|
|
28
28
|
|
|
29
29
|
- **@helpers4/array**: array utilities
|
|
30
|
+
- **@helpers4/commit**: commit utilities
|
|
30
31
|
- **@helpers4/date**: date utilities
|
|
31
32
|
- **@helpers4/function**: function utilities
|
|
33
|
+
- **@helpers4/math**: math utilities
|
|
32
34
|
- **@helpers4/number**: number utilities
|
|
33
35
|
- **@helpers4/object**: object utilities
|
|
34
36
|
- **@helpers4/observable**: observable utilities
|
|
@@ -43,14 +45,16 @@ This package includes all the following helpers4 categories:
|
|
|
43
45
|
| Name | Package | Source Code | Description |
|
|
44
46
|
|------|---------|-------------|-------------|
|
|
45
47
|
| array | [@helpers4/array](https://www.npmjs.com/package/@helpers4/array) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/array) | Array manipulation utilities |
|
|
46
|
-
|
|
|
48
|
+
| commit | [@helpers4/commit](https://www.npmjs.com/package/@helpers4/commit) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/commit) | Conventional Commits parsing and analysis |
|
|
49
|
+
| 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
50
|
| 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
|
-
|
|
|
51
|
+
| 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 |
|
|
52
|
+
| 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
53
|
| object | [@helpers4/object](https://www.npmjs.com/package/@helpers4/object) | [Source](https://github.com/helpers4/helpers4/tree/main/helpers/object) | Object manipulation utilities |
|
|
50
54
|
| 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
55
|
| 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
56
|
| 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) |
|
|
57
|
+
| 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
58
|
| 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
59
|
| 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
60
|
|
|
@@ -58,18 +62,20 @@ This package includes all the following helpers4 categories:
|
|
|
58
62
|
|
|
59
63
|
You can also install individual categories if you prefer:
|
|
60
64
|
|
|
61
|
-
- `
|
|
62
|
-
- `
|
|
63
|
-
- `
|
|
64
|
-
- `
|
|
65
|
-
- `
|
|
66
|
-
- `
|
|
67
|
-
- `
|
|
68
|
-
- `
|
|
69
|
-
- `
|
|
70
|
-
- `
|
|
71
|
-
- `
|
|
65
|
+
- `pnpm install @helpers4/array`
|
|
66
|
+
- `pnpm install @helpers4/commit`
|
|
67
|
+
- `pnpm install @helpers4/date`
|
|
68
|
+
- `pnpm install @helpers4/function`
|
|
69
|
+
- `pnpm install @helpers4/math`
|
|
70
|
+
- `pnpm install @helpers4/number`
|
|
71
|
+
- `pnpm install @helpers4/object`
|
|
72
|
+
- `pnpm install @helpers4/observable`
|
|
73
|
+
- `pnpm install @helpers4/promise`
|
|
74
|
+
- `pnpm install @helpers4/string`
|
|
75
|
+
- `pnpm install @helpers4/type`
|
|
76
|
+
- `pnpm install @helpers4/url`
|
|
77
|
+
- `pnpm install @helpers4/version`
|
|
72
78
|
|
|
73
79
|
## License
|
|
74
80
|
|
|
75
|
-
|
|
81
|
+
LGPL-3.0
|