UNPKG

create-node-template

Version:

Create node.js or express boilerplate with one command

7 lines 230 B
/* * Type safe check of property existence on type unknown. */ export const unknownHasProperty = (obj, prop) => { return typeof obj === 'object' && obj !== null && prop in obj; }; //# sourceMappingURL=typescript-utils.js.map