blob: c94f643f3f50c6eb73292e8d6877dad1de76a451 [file] [log] [blame]
'use strict';
var findKey = require('./find-key');
module.exports = function (obj, cb/*, thisArg, compareFn*/) {
var key = findKey.apply(this, arguments);
return (key == null) ? key : obj[key];
};