mol_type_all 0.0.1829 → 0.0.1830

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/README.md +40 -40
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -31,13 +31,13 @@ type cutted_head = Assert<
31
31
  >
32
32
  ```
33
33
 
34
- # Utilite types
34
+ # Utilites
35
35
 
36
36
  ## Assertions
37
37
 
38
- - [$mol_type_error](./error) - special type for errors with details.
39
- - [$mol_type_assert](./assert) - fails type check on type inequality.
40
- - [$mol_type_enforce](./enforce) - fails type check on type incompatibility.
38
+ - [$mol_type_error](https://github.com/hyoo-ru/mam_mol/tree/master/type/error) - special type for errors with details.
39
+ - [$mol_type_assert](https://github.com/hyoo-ru/mam_mol/tree/master/type/assert) - fails type check on type inequality.
40
+ - [$mol_type_enforce](https://github.com/hyoo-ru/mam_mol/tree/master/type/enforce) - fails type check on type incompatibility.
41
41
 
42
42
  ```ts
43
43
  // Actual result
@@ -51,57 +51,57 @@ type partial_record = $mol_type_assert<
51
51
 
52
52
  ## Tuples
53
53
 
54
- - [$mol_type_head](./head) - first item of tuple or never.
55
- - [$mol_type_head_write](./head/write) - replaces first element of tuple.
56
- - [$mol_type_tail](./tail) - tuple without first item.
57
- - [$mol_type_foot](./foot) - last item of tuple or never.
58
- - [$mol_type_reverse](./reverse) - makes reversed tuple.
54
+ - [$mol_type_head](https://github.com/hyoo-ru/mam_mol/tree/master/type/head) - first item of tuple or never.
55
+ - [$mol_type_head_write](https://github.com/hyoo-ru/mam_mol/tree/master/type/head/write) - replaces first element of tuple.
56
+ - [$mol_type_tail](https://github.com/hyoo-ru/mam_mol/tree/master/type/tail) - tuple without first item.
57
+ - [$mol_type_foot](https://github.com/hyoo-ru/mam_mol/tree/master/type/foot) - last item of tuple or never.
58
+ - [$mol_type_reverse](https://github.com/hyoo-ru/mam_mol/tree/master/type/reverse) - makes reversed tuple.
59
59
 
60
60
  ## Algebraics
61
61
 
62
- - [$mol_type_equals](./equals) - check for types equality.
63
- - [$mol_type_access](./access) - takes type of property from wild union type.
64
- - [$mol_type_filter_keys](./filter/keys) - records from union with provided property.
65
- - [$mol_type_intersect](./intersect) - converts union to intersection.
66
- - [$mol_type_merge](./merge) - merges intersection of records to one record.
67
- - [$mol_type_keys_all](./keys/all) - all keys from all records from union.
62
+ - [$mol_type_equals](https://github.com/hyoo-ru/mam_mol/tree/master/type/equals) - check for types equality.
63
+ - [$mol_type_access](https://github.com/hyoo-ru/mam_mol/tree/master/type/access) - takes type of property from wild union type.
64
+ - [$mol_type_filter_keys](https://github.com/hyoo-ru/mam_mol/tree/master/type/filter/keys) - records from union with provided property.
65
+ - [$mol_type_intersect](https://github.com/hyoo-ru/mam_mol/tree/master/type/intersect) - converts union to intersection.
66
+ - [$mol_type_merge](https://github.com/hyoo-ru/mam_mol/tree/master/type/merge) - merges intersection of records to one record.
67
+ - [$mol_type_keys_all](https://github.com/hyoo-ru/mam_mol/tree/master/type/keys/all) - all keys from all records from union.
68
68
 
69
69
  ## Strings
70
70
 
71
- - [$mol_type_alphabet_*](./alphabet) - character classes.
72
- - [$mol_type_string_split](./string/split) - splits string by separator.
73
- - [$mol_type_string_join](./string/join) - joins strings by separator.
71
+ - [$mol_type_alphabet_*](https://github.com/hyoo-ru/mam_mol/tree/master/type/alphabet) - character classes.
72
+ - [$mol_type_string_split](https://github.com/hyoo-ru/mam_mol/tree/master/type/string/split) - splits string by separator.
73
+ - [$mol_type_string_join](https://github.com/hyoo-ru/mam_mol/tree/master/type/string/join) - joins strings by separator.
74
74
 
75
75
  ## Numbers
76
76
 
77
- - [$mol_type_int_*](./int) - integer arithmetic (`+`, `-`, `*`, `/`, `^`, `..`, `()`, `<`)
77
+ - [$mol_type_int_*](https://github.com/hyoo-ru/mam_mol/tree/master/type/int) - integer arithmetic (`+`, `-`, `*`, `/`, `^`, `..`, `()`, `<`)
78
78
 
79
79
  ## Functions
80
80
 
81
- - [$mol_type_unary](./unary) - function/class with single param.
82
- - [$mol_type_param](./param) - takes param type by index.
83
- - [$mol_type_result](./result) - takes result/instance type.
81
+ - [$mol_type_unary](https://github.com/hyoo-ru/mam_mol/tree/master/type/unary) - function/class with single param.
82
+ - [$mol_type_param](https://github.com/hyoo-ru/mam_mol/tree/master/type/param) - takes param type by index.
83
+ - [$mol_type_result](https://github.com/hyoo-ru/mam_mol/tree/master/type/result) - takes result/instance type.
84
84
 
85
85
  ## Records
86
86
 
87
- - [$mol_type_immutable_deep](./immutable/deep) - recursive immutability.
88
- - [$mol_type_mutable_deep](./mutable/deep) - recursive mutability.
89
- - [$mol_type_partial_undefined](./partial/undefined) - makes all properties partial.
90
- - [$mol_type_partial_deep](./partial/deep) - makes all properties partial deeply.
91
- - [$mol_type_required_deep](./required/deep) - makes all properties required deeply.
92
- - [$mol_type_nullable](./nullable) - makes all properties nullable.
93
- - [$mol_type_writable](./writable) - makes all properties writable.
94
- - [$mol_type_keys_extract](./keys/extract) - extracts key names from record by value type.
95
- - [$mol_type_keys_exclude](./keys/exclude) - excludes key names from record by value type.
96
- - [$mol_type_omit](./omit) - omits properties by value type.
97
- - [$mol_type_pick](./pick) - pick properties by value type.
98
- - [$mol_type_override](./override) - fully replaces properties.
99
- - [$mol_type_case_*](./case) - converts keys/values to upper/lower/capital cases.
100
-
101
- - [$mol_type_flat_camel](./flat/camel) - makes flat record from volume records tree.
102
- - [$mol_type_flat_keys](./flat/keys) - takes keys paths from volume records tree.
103
- - [$mol_type_volume](./volume) - makes volume records tree from flat record.
104
- - [$mol_type_volume_value](./volume/value) - takes value from volume records tree by path.
87
+ - [$mol_type_immutable_deep](https://github.com/hyoo-ru/mam_mol/tree/master/type/immutable/deep) - recursive immutability.
88
+ - [$mol_type_mutable_deep](https://github.com/hyoo-ru/mam_mol/tree/master/type/mutable/deep) - recursive mutability.
89
+ - [$mol_type_partial_undefined](https://github.com/hyoo-ru/mam_mol/tree/master/type/partial/undefined) - makes all properties partial.
90
+ - [$mol_type_partial_deep](https://github.com/hyoo-ru/mam_mol/tree/master/type/partial/deep) - makes all properties partial deeply.
91
+ - [$mol_type_required_deep](https://github.com/hyoo-ru/mam_mol/tree/master/type/required/deep) - makes all properties required deeply.
92
+ - [$mol_type_nullable](https://github.com/hyoo-ru/mam_mol/tree/master/type/nullable) - makes all properties nullable.
93
+ - [$mol_type_writable](https://github.com/hyoo-ru/mam_mol/tree/master/type/writable) - makes all properties writable.
94
+ - [$mol_type_keys_extract](https://github.com/hyoo-ru/mam_mol/tree/master/type/keys/extract) - extracts key names from record by value type.
95
+ - [$mol_type_keys_exclude](https://github.com/hyoo-ru/mam_mol/tree/master/type/keys/exclude) - excludes key names from record by value type.
96
+ - [$mol_type_omit](https://github.com/hyoo-ru/mam_mol/tree/master/type/omit) - omits properties by value type.
97
+ - [$mol_type_pick](https://github.com/hyoo-ru/mam_mol/tree/master/type/pick) - pick properties by value type.
98
+ - [$mol_type_override](https://github.com/hyoo-ru/mam_mol/tree/master/type/override) - fully replaces properties.
99
+ - [$mol_type_case_*](https://github.com/hyoo-ru/mam_mol/tree/master/type/case) - converts keys/values to upper/lower/capital cases.
100
+
101
+ - [$mol_type_flat_camel](https://github.com/hyoo-ru/mam_mol/tree/master/type/flat/camel) - makes flat record from volume records tree.
102
+ - [$mol_type_flat_keys](https://github.com/hyoo-ru/mam_mol/tree/master/type/flat/keys) - takes keys paths from volume records tree.
103
+ - [$mol_type_volume](https://github.com/hyoo-ru/mam_mol/tree/master/type/volume) - makes volume records tree from flat record.
104
+ - [$mol_type_volume_value](https://github.com/hyoo-ru/mam_mol/tree/master/type/volume/value) - takes value from volume records tree by path.
105
105
 
106
106
  # Similar Projects
107
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_type_all",
3
- "version": "0.0.1829",
3
+ "version": "0.0.1830",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",