TypeTags .Array
Overview
The JavaScript Array
class is a global object that is used in the construction of arrays; which are high-level, list-like objects.
Usage
import { TypeTags } from 'typetags'
console.log(TypeTags.Array)// → [object Array]
Predicate
.isArray(value)
- Checks if
value
is or has a defaultArray
type tag.
const { TypeTags } = require('typetags')
let tag = TypeTags.get([])
TypeTags.isArray(tag)// → true
TypeTags.isArray([1, 2, 3])// → true
TypeTags.isArray([1, 2, 3].toString())// → false
Metadata (TType)
Metadata | Value |
---|---|
.type | Array |
.tag | [object Array] |
.builtin() | undefined |
.getTag() | [object Array] |
.hasSpecialArgs() | false |
.instance() | undefined |
.instanceTypeOf() | object |
.info() | see more |
.isAvailable() | true |
.isConstructor() | true |
.isFactory() | true |
.isFunction() | true |
.isGlobal() | true |
.isIterator() | false |
.isNested() | false |
.isObject() | false |
.isPrimitive() | false |
.isStringifiable() | true |
.isSyntatic() | false |
.isTypedArray() | false |
.ownKeys() | [length, name, prototype, isArray, from, of] |
.toString() | function toString() { [native code] } |
.typeOf() | function |
Signature
declare type ITypeTags = { [key in Types | NestedTypes]: Tags}
declare interface Predicate { predicate(value: any): boolean}