UNPKG

mora-scripts

Version:
17 lines (15 loc) 334 B
interface Interface { /** * 判断 obj 对象是否含有某个 key ( 利用 hasOwnProperty ) * * @param {Object} obj * @param {String} key * @return {Boolean} * * @author Zhonglei Qiu * @since 2.0.0 */ (obj: any, key: string): boolean } declare const instance: Interface export = instance