Skip to content

Commit

Permalink
feat(core): add identity function (#2785)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed May 13, 2024
1 parent ba11f43 commit 5c6aa86
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libs/core/src/utils/identity.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* The unary identity function.
* Returns whatever is passed to it.
*/
export function identity<T>(v: T): T {
return v;
}
1 change: 1 addition & 0 deletions libs/core/src/utils/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ export { shallowCompare } from './shallow-compare';
export { shuffle } from './shuffle';
export { unique } from './unique';
export * from './long-arithmetic';
export * from './identity';

0 comments on commit 5c6aa86

Please sign in to comment.