We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The debug would put a debugger; call in the middle of a macro tree for you:
debug
debugger;
foo: conditional('bar', debug(or('qwer', 'yui')), 'asdf')
log would be very similar. It would log out vitals for you (keys, values, etc.):
log
foo: conditional('bar', log(or('qwer', 'yui')), 'asdf')
They should be stripped from production builds, since they're only meant as temporary debugging helpers.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
debug
would put adebugger;
call in the middle of a macro tree for you:log
would be very similar. It would log out vitals for you (keys, values, etc.):They should be stripped from production builds, since they're only meant as temporary debugging helpers.
The text was updated successfully, but these errors were encountered: