UNPKG

@rws-air/utils

Version:
12 lines 385 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = void 0; /** * Verify if the input is an object literal (or class). * @param input The object to verify */ function isObject(input) { return typeof input === 'object' && input ? input.constructor === Object : false; } exports.isObject = isObject; //# sourceMappingURL=IsObject.js.map