Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / flip.js
diff --git a/node_modules/uncss/node_modules/lodash/flip.js b/node_modules/uncss/node_modules/lodash/flip.js
new file mode 100644 (file)
index 0000000..9f6912d
--- /dev/null
@@ -0,0 +1,27 @@
+var createWrapper = require('./internal/createWrapper');
+
+/** Used to compose bitmasks for wrapper metadata. */
+var FLIP_FLAG = 512;
+
+/**
+ * Creates a function that invokes `func` with arguments reversed.
+ *
+ * @static
+ * @memberOf _
+ * @category Function
+ * @param {Function} func The function to flip arguments for.
+ * @returns {Function} Returns the new function.
+ * @example
+ *
+ * var flipped = _.flip(function() {
+ *   return _.toArray(arguments);
+ * });
+ *
+ * flipped('a', 'b', 'c', 'd');
+ * // => ['d', 'c', 'b', 'a']
+ */
+function flip(func) {
+  return createWrapper(func, FLIP_FLAG);
+}
+
+module.exports = flip;