UNPKG

hd-utils

Version:

A handy utils for modern JS developers

9 lines (8 loc) 221 B
import has from "../object/has"; /** * @description checks if the passed key in the object. * @deprecated use has instead. */ export default function isKeyInObject(objectType, key) { return has(objectType, key); }