shinkansen-transmission 2.2.6 → 2.2.13
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/.gitattributes
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# Default behavior
|
2
|
+
* text=auto
|
3
|
+
|
4
|
+
# LF line endings
|
5
|
+
*.json text eol=lf
|
6
|
+
*.mjs text eol=lf
|
7
|
+
*.cjs text eol=lf
|
8
|
+
*.jsx text eol=lf
|
9
|
+
*.mts text eol=lf
|
10
|
+
*.sh text eol=lf
|
11
|
+
.editorconfig text eol=lf
|
12
|
+
.eslintignore text eol=lf
|
13
|
+
.eslintrc text eol=lf
|
14
|
+
.gitattributes text eol=lf
|
15
|
+
.gitignore text eol=lf
|
16
|
+
.npmignore text eol=lf
|
17
|
+
.npmrc text eol=lf
|
18
|
+
.eslintrc text eol=lf
|
19
|
+
.babelrc text eol=lf
|
20
|
+
.husky/* text eol=lf
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-transmission",
|
3
|
-
"version": "2.2.
|
3
|
+
"version": "2.2.13",
|
4
4
|
"description": "Shinkansen Transmission",
|
5
5
|
"keywords": [
|
6
6
|
"Shinkansen",
|
@@ -27,7 +27,8 @@
|
|
27
27
|
"pretest": "npm run nvm",
|
28
28
|
"test": "cross-env NODE_ENV=test mocha test --recursive --verbose",
|
29
29
|
"nvm": "bash nvm.sh",
|
30
|
-
"coverage": "
|
30
|
+
"coverage": "c8 --reporter html npm run test",
|
31
|
+
"prepare": "husky install"
|
31
32
|
},
|
32
33
|
"dependencies": {
|
33
34
|
"debug": "^4.3.4",
|
@@ -43,6 +44,7 @@
|
|
43
44
|
"@modernpoacher/hooks": "^1.0.395",
|
44
45
|
"babel-loader": "^9.1.2",
|
45
46
|
"babel-plugin-module-resolver": "^5.0.0",
|
47
|
+
"c8": "^7.13.0",
|
46
48
|
"chai": "^4.3.7",
|
47
49
|
"core-js": "^3.30.2",
|
48
50
|
"cross-env": "^7.0.3",
|
@@ -54,7 +56,6 @@
|
|
54
56
|
"eslint-plugin-promise": "^6.1.1",
|
55
57
|
"husky": "^8.0.3",
|
56
58
|
"mocha": "^10.2.0",
|
57
|
-
"nyc": "^15.1.0",
|
58
59
|
"rimraf": "^5.0.0"
|
59
60
|
},
|
60
61
|
"exports": {
|
@@ -3,6 +3,7 @@ import debug from 'debug'
|
|
3
3
|
import {
|
4
4
|
isArray,
|
5
5
|
isObject,
|
6
|
+
isPrimitive,
|
6
7
|
isConstValue,
|
7
8
|
toConstValue,
|
8
9
|
isDefaultValue,
|
@@ -43,15 +44,23 @@ export function toString (v) {
|
|
43
44
|
|
44
45
|
export function toNumber (v) {
|
45
46
|
if (typeof v === 'number') return v
|
47
|
+
if (typeof v === 'boolean') return Number(v)
|
48
|
+
|
49
|
+
if (v) { // excludes zero-length strings
|
50
|
+
const n = (
|
51
|
+
isPrimitive(v) // excludes objects and arrays
|
52
|
+
? Number(v) // +v // unary operator
|
53
|
+
: NaN
|
54
|
+
)
|
46
55
|
|
47
|
-
if (v) {
|
48
|
-
const n = Number(v) // +v // unary operator
|
49
56
|
if (!isNaN(n)) return n
|
50
57
|
}
|
51
58
|
|
52
59
|
throw new Error('Invalid `number`')
|
53
60
|
}
|
54
61
|
|
62
|
+
const handleError = ({ message = 'No error message defined' }) => { log(message) }
|
63
|
+
|
55
64
|
export const transformValue = (schema) => (
|
56
65
|
isObject(schema)
|
57
66
|
? isConstValue(schema)
|
@@ -78,8 +87,8 @@ export function transformValueFor (value, array) {
|
|
78
87
|
*/
|
79
88
|
return transformValue(v)
|
80
89
|
}
|
81
|
-
} catch (
|
82
|
-
|
90
|
+
} catch (e) {
|
91
|
+
handleError(e)
|
83
92
|
}
|
84
93
|
|
85
94
|
/*
|
@@ -205,8 +214,6 @@ export function transformItemsObjectFor (values, items = {}, parentUri = '#', ur
|
|
205
214
|
)
|
206
215
|
}
|
207
216
|
|
208
|
-
const handleError = ({ message = 'No error message defined' }) => log(message)
|
209
|
-
|
210
217
|
// https://json-schema.org/draft/2019-09/json-schema-validation.html#rfc.section.6
|
211
218
|
export function transformObjectSchemaNull (values, schema, { uri: parentUri, key: fieldKey }, uri = getUri(parentUri, fieldKey)) {
|
212
219
|
/*
|