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
I think Firefox made a few changes recently (not exactly sure what) that breaks es-module-shims. Running the below code on https://try.purescript.org doesn't work for Firefox 102.1 but does on Chromium 103.0.5060.53. Can anyone else confirm?
moduleMainwhereimportPreludeimportData.Foldable (fold)
importEffect (Effect)
importEffect.Console (log)
importTryPureScriptasTPimportData.DecimalasDmain::EffectUnit
main = TP.render =<< TP.withConsole do
log $ show $ D.fromString "132.4242"