summaryrefslogtreecommitdiff
path: root/node_modules/xtend/has-keys.js
blob: 62391e786b3c6974296e482efba5b0d321925e56 (about) (plain)
1
2
3
4
5
6
7
module.exports = hasKeys

function hasKeys(source) {
    return source !== null &&
        (typeof source === "object" ||
        typeof source === "function")
}