UNPKG

@bitloops/bl-transpiler

Version:
12 lines 317 B
export class TypeUtils { static hasObjectType(value) { return typeof value === 'object' && value !== null; } static hasArrayType(value) { return Array.isArray(value); } static isString(value) { return typeof value === 'string'; } } //# sourceMappingURL=TypeUtils.js.map