UNPKG

typedescriptor

Version:

typedescriptor identifies and describes types.

8 lines (7 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = void 0; const isObject = function (value) { return typeof value === 'object' && value !== null; }; exports.isObject = isObject;