UNPKG

@kenniy/godeye-data-contracts

Version:

Enterprise-grade base repository architecture for GOD-EYE microservices with zero overhead and maximum code reuse

13 lines (12 loc) 302 B
"use strict"; /** * Type utilities */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TypeUtils = void 0; class TypeUtils { static isObject(value) { return value !== null && typeof value === 'object' && !Array.isArray(value); } } exports.TypeUtils = TypeUtils;