diff --git a/README.md b/README.md index 406454d9..97bf0ec1 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ nx generate ngxtension:init - [create-effect](https://ngxtension.netlify.app/utilities/create-effect) - [if-validator](https://ngxtension.netlify.app/utilities/if-validator) - [navigation-end](https://ngxtension.netlify.app/utilities/navigation-end) +- [call-apply](https://ngxtension.netlify.app/utilities/call-apply) +- [trackby-id-prop](https://ngxtension.netlify.app/utilities/trackby-id-prop) diff --git a/docs/src/content/docs/utilities/call-apply.md b/docs/src/content/docs/utilities/call-apply.md index aa436e8d..19369d70 100644 --- a/docs/src/content/docs/utilities/call-apply.md +++ b/docs/src/content/docs/utilities/call-apply.md @@ -6,7 +6,7 @@ description: ngxtension/call-apply `callPipe` and `applyPipe` are simple standalone pipes that simplify the calling of PURE functions passing params to it; they take advantage of the "memoization" offered by pure pipes in Angular, and ensure that you use them only with PURE functions (aka if you use this inside the body function they throw errors!) ```ts -import { CallPipe, ApplyPipe } from 'ngxtension/if-validation'; +import { CallPipe, ApplyPipe } from 'ngxtension/call-apply'; ``` ## Usage