UNPKG

@bitloops/bl-transpiler

Version:
16 lines 446 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TypeUtils = void 0; 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'; } } exports.TypeUtils = TypeUtils; //# sourceMappingURL=TypeUtils.js.map