@bitloops/bl-transpiler
Version:
The one and only Bitloops Language transpiler
16 lines • 446 B
JavaScript
;
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