-
-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(virtual-core): optimization memo function inner logic #978
base: main
Are you sure you want to change the base?
Conversation
…nto ref/utils-memo
|
View your CI Pipeline Execution ↗ for commit abcda37.
☁️ Nx Cloud last updated this comment at |
summary
opts.key && opts.debug?.()
was repeated multiple times, so I assigned it to a variable for reuse.const depsChanged = ...
expression, i extracted it into a separate function instead of assigning it to a variable, to improve readability.pad
function withString(...).padStart(...)
to prevent unnecessary creation and enhance clarity.