ramda-adjunct 3.2.0 → 3.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/.nvmrc CHANGED
@@ -1 +1 @@
1
- 16
1
+ 18
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ # [3.3.0](https://github.com/char0n/ramda-adjunct/compare/v3.2.0...v3.3.0) (2022-09-18)
2
+
3
+
4
+ ### Features
5
+
6
+ * **types:** simplify types and declare named exports ([#2307](https://github.com/char0n/ramda-adjunct/issues/2307)) ([1b46e44](https://github.com/char0n/ramda-adjunct/commit/1b46e44fcc563ecb062ab4928d3c9e295287e064)), closes [#2306](https://github.com/char0n/ramda-adjunct/issues/2306) [#1467](https://github.com/char0n/ramda-adjunct/issues/1467)
7
+
8
+
9
+
1
10
  # [3.2.0](https://github.com/char0n/ramda-adjunct/compare/v3.1.0...v3.2.0) (2022-06-18)
2
11
 
3
12
 
package/README.md CHANGED
@@ -137,7 +137,7 @@ It is also possible that our ES5 distributions run on node versions older than 0
137
137
  ## API Documentation
138
138
 
139
139
  [LATEST](https://char0n.github.io/ramda-adjunct),
140
- [PREVIOUS](https://char0n.github.io/ramda-adjunct/3.1.0),
140
+ [PREVIOUS](https://char0n.github.io/ramda-adjunct/3.2.0),
141
141
  [ALL VERSIONS](./VERSIONS.md)
142
142
 
143
143
  ## Wrote about us
package/dist/RA.node.js CHANGED
@@ -5247,6 +5247,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5247
5247
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
5248
5248
  *
5249
5249
  * @func isNotPrimitive
5250
+ * @memberOf RA
5250
5251
  * @category Type
5251
5252
  * @sig * -> Boolean
5252
5253
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -5909,6 +5910,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5909
5910
  * for definition of what sub-types comprise a primitive.
5910
5911
  *
5911
5912
  * @func isPrimitive
5913
+ * @memberOf RA
5912
5914
  * @category Type
5913
5915
  * @sig * -> Boolean
5914
5916
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
package/dist/RA.web.js CHANGED
@@ -5247,6 +5247,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5247
5247
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
5248
5248
  *
5249
5249
  * @func isNotPrimitive
5250
+ * @memberOf RA
5250
5251
  * @category Type
5251
5252
  * @sig * -> Boolean
5252
5253
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -5909,6 +5910,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5909
5910
  * for definition of what sub-types comprise a primitive.
5910
5911
  *
5911
5912
  * @func isPrimitive
5913
+ * @memberOf RA
5912
5914
  * @category Type
5913
5915
  * @sig * -> Boolean
5914
5916
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -5363,6 +5363,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5363
5363
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
5364
5364
  *
5365
5365
  * @func isNotPrimitive
5366
+ * @memberOf RA
5366
5367
  * @category Type
5367
5368
  * @sig * -> Boolean
5368
5369
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -6041,6 +6042,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
6041
6042
  * for definition of what sub-types comprise a primitive.
6042
6043
  *
6043
6044
  * @func isPrimitive
6045
+ * @memberOf RA
6044
6046
  * @category Type
6045
6047
  * @sig * -> Boolean
6046
6048
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -4,6 +4,7 @@ import isPrimitive from './isPrimitive';
4
4
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
5
5
  *
6
6
  * @func isNotPrimitive
7
+ * @memberOf RA
7
8
  * @category Type
8
9
  * @sig * -> Boolean
9
10
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
package/es/isPrimitive.js CHANGED
@@ -13,6 +13,7 @@ import isSymbol from './isSymbol';
13
13
  * for definition of what sub-types comprise a primitive.
14
14
  *
15
15
  * @func isPrimitive
16
+ * @memberOf RA
16
17
  * @category Type
17
18
  * @sig * -> Boolean
18
19
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -13,6 +13,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
13
13
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
14
14
  *
15
15
  * @func isNotPrimitive
16
+ * @memberOf RA
16
17
  * @category Type
17
18
  * @sig * -> Boolean
18
19
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -29,6 +29,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
29
29
  * for definition of what sub-types comprise a primitive.
30
30
  *
31
31
  * @func isPrimitive
32
+ * @memberOf RA
32
33
  * @category Type
33
34
  * @sig * -> Boolean
34
35
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "cookbook",
15
15
  "functional"
16
16
  ],
17
- "version": "3.2.0",
17
+ "version": "3.3.0",
18
18
  "homepage": "https://github.com/char0n/ramda-adjunct",
19
19
  "license": "BSD-3-Clause",
20
20
  "repository": {
@@ -124,13 +124,13 @@
124
124
  "ramda": ">= 0.28.0 <= 0.28.0"
125
125
  },
126
126
  "devDependencies": {
127
- "@babel/cli": "7.17.10",
128
- "@babel/core": "=7.18.5",
129
- "@babel/plugin-transform-modules-commonjs": "=7.18.2",
130
- "@babel/preset-env": "=7.18.2",
131
- "@babel/register": "7.17.7",
132
- "@commitlint/cli": "=17.0.2",
133
- "@commitlint/config-conventional": "=17.0.2",
127
+ "@babel/cli": "7.18.10",
128
+ "@babel/core": "=7.19.1",
129
+ "@babel/plugin-transform-modules-commonjs": "=7.18.6",
130
+ "@babel/preset-env": "=7.19.1",
131
+ "@babel/register": "7.18.9",
132
+ "@commitlint/cli": "=17.1.2",
133
+ "@commitlint/config-conventional": "=17.1.0",
134
134
  "assert": "=2.0.0",
135
135
  "babel-loader": "=8.2.5",
136
136
  "babel-plugin-annotate-pure-calls": "0.4.0",
@@ -139,15 +139,15 @@
139
139
  "chai": "4.3.6",
140
140
  "codecov": "3.8.3",
141
141
  "conventional-changelog-cli": "2.2.2",
142
- "core-js": "=3.23.1",
142
+ "core-js": "=3.25.1",
143
143
  "docdash": "git+https://github.com/char0n/docdash.git#534b44382138a55dd8d93642c979e51e46471185",
144
144
  "dtslint": "=4.2.1",
145
- "eslint": "=8.18.0",
145
+ "eslint": "=8.23.1",
146
146
  "eslint-config-airbnb-base": "=15.0.0",
147
147
  "eslint-config-prettier": "=8.5.0",
148
148
  "eslint-plugin-import": "=2.26.0",
149
- "eslint-plugin-mocha": "=10.0.5",
150
- "eslint-plugin-prettier": "4.0.0",
149
+ "eslint-plugin-mocha": "=10.1.0",
150
+ "eslint-plugin-prettier": "4.2.1",
151
151
  "eslint-plugin-ramda": "2.5.1",
152
152
  "fantasy-land": "5.0.0",
153
153
  "fantasy-laws": "=2.0.1",
@@ -155,10 +155,10 @@
155
155
  "glob": "=8.0.3",
156
156
  "husky": "8.0.1",
157
157
  "istanbul": "=0.4.5",
158
- "jsdoc": "=3.6.10",
158
+ "jsdoc": "=3.6.11",
159
159
  "jsverify": "0.8.4",
160
160
  "license-cli": "1.1.6",
161
- "lint-staged": "13.0.2",
161
+ "lint-staged": "13.0.3",
162
162
  "mocha": "=10.0.0",
163
163
  "mocha-junit-reporter": "2.0.2",
164
164
  "mocha-multi-reporters": "1.5.1",
@@ -172,11 +172,11 @@
172
172
  "rimraf": "3.0.2",
173
173
  "sanctuary-show": "3.0.0",
174
174
  "sinon": "=14.0.0",
175
- "terser-webpack-plugin": "5.3.3",
176
- "testem": "=3.8.0",
175
+ "terser-webpack-plugin": "5.3.6",
176
+ "testem": "=3.9.0",
177
177
  "tslint": "=6.1.3",
178
- "typescript": "=4.7.4",
179
- "webpack": "=5.73.0",
178
+ "typescript": "=4.8.3",
179
+ "webpack": "=5.74.0",
180
180
  "webpack-cli": "4.10.0"
181
181
  },
182
182
  "browserslist": "> 0.25%, ie 10, ie 11, not op_mini all",
@@ -6,6 +6,7 @@ import isPrimitive from './isPrimitive';
6
6
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
7
7
  *
8
8
  * @func isNotPrimitive
9
+ * @memberOf RA
9
10
  * @category Type
10
11
  * @sig * -> Boolean
11
12
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}
@@ -15,6 +15,7 @@ import isSymbol from './isSymbol';
15
15
  * for definition of what sub-types comprise a primitive.
16
16
  *
17
17
  * @func isPrimitive
18
+ * @memberOf RA
18
19
  * @category Type
19
20
  * @sig * -> Boolean
20
21
  * @since {@link https://char0n.github.io/ramda-adjunct/2.32.0|v2.32.0}