shinkansen-transmission 2.2.18 → 2.2.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-transmission",
3
- "version": "2.2.18",
3
+ "version": "2.2.20",
4
4
  "description": "Shinkansen Transmission",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -24,14 +24,6 @@ export const isNullSchema = ({ type } = {}) => type === 'null'
24
24
 
25
25
  export const isPrimitive = (v) => !isObject(v) && !isArray(v)
26
26
 
27
- export const toConstValue = (schema = {}) => Reflect.get(schema, 'const')
28
-
29
- export const isConstValue = (schema = {}) => Reflect.has(schema, 'const')
30
-
31
- export const toDefaultValue = (schema = {}) => Reflect.get(schema, 'default')
32
-
33
- export const isDefaultValue = (schema = {}) => Reflect.has(schema, 'default')
34
-
35
27
  export const getTitle = ({ title } = {}) => (title ? { title } : {})
36
28
 
37
29
  export const getDescription = ({ description } = {}) => (description ? { description } : {})
@@ -157,15 +149,17 @@ export function getMetaValue (values = {}, uri = '#', schema = {}) {
157
149
  return {}
158
150
  }
159
151
 
160
- export const transformValue = (schema) => (
161
- isObject(schema)
162
- ? isConstValue(schema)
163
- ? toConstValue(schema)
164
- : isDefaultValue(schema)
165
- ? toDefaultValue(schema)
166
- : schema
167
- : schema
168
- )
152
+ export function transformValue (schema) {
153
+ return (
154
+ isObject(schema)
155
+ ? hasConst(schema)
156
+ ? getConst(schema)
157
+ : hasDefault(schema)
158
+ ? getDefault(schema)
159
+ : schema
160
+ : schema
161
+ )
162
+ }
169
163
 
170
164
  export function hasValue (values = {}, uri = '#', schema = {}) {
171
165
  if (Reflect.has(values, uri)) {
@@ -3,10 +3,6 @@ import debug from 'debug'
3
3
  import equal from 'fast-deep-equal'
4
4
 
5
5
  import {
6
- isConstValue,
7
- toConstValue,
8
- isDefaultValue,
9
- toDefaultValue,
10
6
  isObject,
11
7
  isArray,
12
8
  hasEnum,
@@ -15,7 +11,8 @@ import {
15
11
  getAnyOf,
16
12
  hasOneOf,
17
13
  getOneOf,
18
- getUri
14
+ getUri,
15
+ transformValue
19
16
  } from 'shinkansen-transmission/transmission/common'
20
17
 
21
18
  const log = debug('shinkansen-transmission/from-document-to-hash')
@@ -132,15 +129,9 @@ export function getSchema (schema = {}, parentUri = '', uri = '') {
132
129
  }
133
130
  }
134
131
 
135
- export const transformValue = (schema) => (
136
- isObject(schema)
137
- ? isConstValue(schema)
138
- ? toConstValue(schema)
139
- : isDefaultValue(schema)
140
- ? toDefaultValue(schema)
141
- : schema // object
142
- : schema // primitive or array
143
- )
132
+ export {
133
+ transformValue
134
+ }
144
135
 
145
136
  export function transformValueIndexFor (array, value) {
146
137
  /*
@@ -4,17 +4,14 @@ import {
4
4
  isArray,
5
5
  isObject,
6
6
  isPrimitive,
7
- isConstValue,
8
- toConstValue,
9
- isDefaultValue,
10
- toDefaultValue,
11
7
  hasEnum,
12
8
  getEnum,
13
9
  hasAnyOf,
14
10
  getAnyOf,
15
11
  hasOneOf,
16
12
  getOneOf,
17
- getUri
13
+ getUri,
14
+ transformValue
18
15
  } from 'shinkansen-transmission/transmission/common'
19
16
 
20
17
  const log = debug('shinkansen-transmission/from-hash-to-document')
@@ -61,15 +58,9 @@ export function toNumber (v) {
61
58
 
62
59
  const handleError = ({ message = 'No error message defined' }) => { log(message) }
63
60
 
64
- export const transformValue = (schema) => (
65
- isObject(schema)
66
- ? isConstValue(schema)
67
- ? toConstValue(schema)
68
- : isDefaultValue(schema)
69
- ? toDefaultValue(schema)
70
- : schema
71
- : schema
72
- )
61
+ export {
62
+ transformValue
63
+ }
73
64
 
74
65
  export function transformValueFor (value, array) {
75
66
  /*