admin-bro
Version:
Admin panel for apps written in node.js
14 lines (11 loc) • 562 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isEntireRecordGiven = exports.default = void 0;
const isEntireRecordGiven = (propertyOrRecord, value) => !!(typeof value === 'undefined' // user can pass property and omit value. This makes sense when
// third argument of the function (selectedRecord) is passed to onChange
// callback
&& !(typeof propertyOrRecord === 'string') // we assume that only params has to be given
&& propertyOrRecord.params);
exports.isEntireRecordGiven = exports.default = isEntireRecordGiven;
;