(type)
| 61 | var ifNotNullish = getIfNotFunction(isNullish); |
| 62 | var ifNotUndefined = getIfNotFunction(isUndefined); |
| 63 | var isTypeStringOrBoolean = (type) => type == STRING || type == BOOLEAN; |
| 64 | var isString = (thing) => getTypeOf(thing) == STRING; |
| 65 | var isNumber = (thing) => getTypeOf(thing) == NUMBER; |
| 66 | var isFunction = (thing) => getTypeOf(thing) == FUNCTION; |
no outgoing calls
no test coverage detected
searching dependent graphs…