mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 12:38:26 -04:00
5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
|
|
// Keep the identity function around for default iteratees.
|
||
|
|
export default function identity(value) {
|
||
|
|
return value;
|
||
|
|
}
|