UNPKG

ddd-tool-kit

Version:

A development tool kit for using Domain Driven Design in your Web API Node.js

6 lines (5 loc) 264 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.verifyAllPropsExists = void 0; const verifyAllPropsExists = (propNames, entity) => propNames.every((prop) => !!entity[prop]); exports.verifyAllPropsExists = verifyAllPropsExists;