(type: any)
| 57 | isUndefined(cellOrValue) || !isUndefined(getCellOrValueType(cellOrValue)); |
| 58 | |
| 59 | export const isJsonType = (type: any): boolean => |
| 60 | type == OBJECT || type == ARRAY; |
| 61 | |
| 62 | export const encodeIfJson = <CV extends Cell | Value>(value: CV): CV => |
| 63 | isObject(value) || isArray(value) |
no outgoing calls
no test coverage detected
searching dependent graphs…