is-date-object
popularIs this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
Updated by @ljharb
is-callable
popularIs this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.
Updated by @ljharb
is-boolean-object
Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
Updated by @ljharb
is-number-object
Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
Updated by @ljharb
is-typed-array
Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.
Updated by @ljharb
which-typed-array
Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.
Updated by @ljharb
@stdlib/assert-has-tostringtag-support
Detect native Symbol.toStringTag support.
Updated by @stdlib-bot
has-tostringtag
Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.
Updated by @ljharb
is-not-boolean
Is this value not a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
Updated by @konradlinkowski