Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / fp / _convertBrowser.js
diff --git a/node_modules/uncss/node_modules/lodash/fp/_convertBrowser.js b/node_modules/uncss/node_modules/lodash/fp/_convertBrowser.js
new file mode 100644 (file)
index 0000000..b076778
--- /dev/null
@@ -0,0 +1,13 @@
+var baseConvert = require('./_baseConvert');
+
+/**
+ * Converts `lodash` to an immutable auto-curried iteratee-first data-last version.
+ *
+ * @param {Function} lodash The lodash function.
+ * @returns {Function} Returns the converted `lodash`.
+ */
+function browserConvert(lodash) {
+  return baseConvert(lodash, lodash);
+}
+
+module.exports = browserConvert;