Mottie / javascript-number-formatter

Lightweight & Fast JavaScript Number Formatter
http://mottie.github.io/javascript-number-formatter/
MIT License
141 stars 37 forks source link

jsFiddle doesn't work #12

Closed jfstephe closed 6 years ago

jfstephe commented 6 years ago

Hi, The example jsFiddle doesn't work straight away. There's a bug -

document.querySelector(".result").textContent = format(mask, value);

should be

document.querySelector(".result").textContent = format(mask, parseFloat(value, 10));

Thanks again for your hard work here! John

Mottie commented 6 years ago

Hi @jfstephe!

It's been fixed, thanks!