Version 1
[yaffs-website] / node_modules / uncss / node_modules / form-data / node_modules / lodash / _stackGet.js
diff --git a/node_modules/uncss/node_modules/form-data/node_modules/lodash/_stackGet.js b/node_modules/uncss/node_modules/form-data/node_modules/lodash/_stackGet.js
new file mode 100644 (file)
index 0000000..1cdf004
--- /dev/null
@@ -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;