Andrey Karavaychik
Andrey Karavaychik
Hello, I have an issue with percentage formatter as well. `numbro('0.14').format("0,0%");` output: `14.000000000000002%` `numbro('0.14').format("0,0.000000000000000000000000000000%")` output: `14.000000000000003552713678800501%` But if original value is too large so thousands separator appears it looks like...
Have the same issue with percentage formatting: `numbro('0.14').format("0,0%");` output: `14.000000000000002%` `numbro('0.14').format("0,0.000000000000000000000000000000%")` output: `14.000000000000003552713678800501%` But if original value is too large so thousands separator appears it looks like this: `numbro('10.14').format("0,0%");` output:...
Any progress on this?
@zjcf Did you find any solution for this issue?
@Restuta unfortunately this doesn't work for me, because ProvidePlugin injects listed modules into another module where $, jQuery or window.jQuery is used. In my case third party library adds handler...
Yeah, finally I got this work too. I just put expose loader to both places dll and entry.
I just put this line into loaders section in both places: dll config and entry build config ``` { test: require.resolve('jquery'), loader: 'expose?$!expose?jQuery' } ``` It worked for my problem...
> Possibly relevant, although not a fix: #401 Yes, indeed. I'm ok to escape it, but I would like to have a chance to fix it somehow, at least in...
For now I wrote the following fix using custom OutputFormatter: https://dotnetfiddle.net/wbtvUI, but let me know if there is another way to catch escaped values in events.