has-keys.js 162 Bytes EditWeb IDE 1 2 3 4 5 6 7 module.exports = hasKeys function hasKeys(source) { return source !== null && (typeof source === "object" || typeof source === "function") }