We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Return the same (first) value.
Similar: ARGUMENTS, NOOP, IDENTITY, COMPARE.
function IDENTITY(v) // v: a value
const xasyncfn = require('extra-async-function'); await xasyncfn.IDENTITY(1); // → 1 await xasyncfn.IDENTITY(Promise.resolve('a')); // → 'a'