UNPKG

structured-elements

Version:

A TypeScript package for modelling and validating data

11 lines 290 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isRecord = void 0; const isRecord = (subject) => { if (!subject) { return false; } return typeof subject === `object`; }; exports.isRecord = isRecord; //# sourceMappingURL=record.js.map