function flipimport { flip } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/function.js"; flip(func)Creates a function that invokes func with arguments reversed. Examplesvar flipped = _.flip(function() { return _.toArray(arguments); }); flipped('a', 'b', 'c', 'd'); // => ['d', 'c', 'b', 'a'] ParametersfuncThe function to flip arguments for.