We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Return the arguments passed as a array.
Similar: ARGUMENTS, NOOP, IDENTITY, COMPARE.
function ARGUMENTS(...args) // args: arguments
const xasyncfn = require('extra-async-function'); await xasyncfn.ARGUMENTS(1, 2); // → [1, 2] await xasyncfn.ARGUMENTS('a', Promise.resolve('b')); // → ['a', 'b']