Sha256: 0681d6e2e14cb4d0fb1a2f893dd25fff38fcbdfc6f2cc12989d8c946e7055973
Contents?: true
Size: 271 Bytes
Versions: 301
Compression:
Stored size: 271 Bytes
Contents
/** * Gets the stack value for `key`. * * @private * @name get * @memberOf Stack * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function stackGet(key) { return this.__data__.get(key); } module.exports = stackGet;
Version data entries
301 entries across 278 versions & 33 rubygems