mirror of
https://github.com/azure/login.git
synced 2026-06-06 21:17:09 +00:00
6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
// Keep the identity function around for default iteratees.
|
|
function identity(value) {
|
|
return value;
|
|
}
|
|
|
|
module.exports = identity;
|