Sha256: 4242e801d739f818ce22185773bd1a0dd6b5b36b6dda0c4a5755007a33b5bdfd
Contents?: true
Size: 432 Bytes
Versions: 46
Compression:
Stored size: 432 Bytes
Contents
"use strict"; var isValue = require("./object/is-value"); var slice = Array.prototype.slice; // eslint-disable-next-line no-unused-vars module.exports = function (value, propertyName1 /*, …propertyNamen*/) { var propertyNames = slice.call(arguments, 1), index = 0, length = propertyNames.length; while (isValue(value) && index < length) value = value[propertyNames[index++]]; return index === length ? value : undefined; };
Version data entries
46 entries across 46 versions & 3 rubygems