(s)
| 30965 | isImmutable = (s) => We().Iterable.isIterable(s), |
| 30966 | immutableToJS = (s) => (isImmutable(s) ? s.toJS() : s) |
| 30967 | function objectify(s) { |
| 30968 | return isObject(s) ? immutableToJS(s) : {} |
| 30969 | } |
| 30970 | function fromJSOrdered(s) { |
| 30971 | if (isImmutable(s)) return s |
| 30972 | if (s instanceof lt.File) return s |
no test coverage detected