Namespace: is

just.is(value, ...otherValuesopt) → {boolean}

Checks if value looks like the other values.
Source:
core.js, line 267

Parameters:

Name Type Description
value
Any Comparison value.
otherValues
[optional] [repeatable]
Any Values to check against.
Returns:
`true` if some other value looks like value.
Type
boolean
Example
check(null, {}, "null", []); // false. Neither is `null`.
check({}, [], {}); // true. {} is {}.