You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We try to pimp a lot MeteorJS using full TS and use your package to runtime check all the part that come from the client that cannot be trusted.
But in the end, we love to keep the code simple and small and we would like to be able to check everything every time and only disable it with NoAssert<> or something like that in the very rare case we need optimisation.
The other benefit is that dev cannot forget to add Assert because we prefer checking too much things than forgetting to check onething that can become a hack.
function validate(user: User)
will add the assert for User.
The text was updated successfully, but these errors were encountered:
We really love what you've done.
We try to pimp a lot MeteorJS using full TS and use your package to runtime check all the part that come from the client that cannot be trusted.
But in the end, we love to keep the code simple and small and we would like to be able to check everything every time and only disable it with NoAssert<> or something like that in the very rare case we need optimisation.
The other benefit is that dev cannot forget to add Assert because we prefer checking too much things than forgetting to check onething that can become a hack.
will add the assert for User.
The text was updated successfully, but these errors were encountered: