| 139 | const isUndefined = eq$1(undefined); |
| 140 | const isNullable = a => a === null || a === undefined; |
| 141 | const isNonNullable = a => !isNullable(a); |
| 142 | const isFunction = isSimpleType('function'); |
| 143 | const isNumber = isSimpleType('number'); |
| 144 | const isArrayOf = (value, pred) => { |
no test coverage detected