summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js
new file mode 100644
index 00000000..1cdf0040
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/lodash/_stackGet.js
@@ -0,0 +1,14 @@
+/**
+ * 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;