UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

4 lines (3 loc) 216 B
const hasOwnProperty = Object.prototype.hasOwnProperty; export const hasProperty = (value: Record<string, unknown>, property: string) => !(value[property] === undefined || !hasOwnProperty.call(value, property));