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
i used defaultFormat option with Numeral-js lastest version. you can found error "unformat" beacuse Numeral-js remove it in version 2 2.0.0
The text was updated successfully, but these errors were encountered:
Change Line no. 5938 from numeral().unformat(text); to return numeral(text).value();
numeral().unformat(text);
return numeral(text).value();
Change Line no. 8422 from numeral().unformat($value); to numeral($value).value();
numeral().unformat($value);
numeral($value).value();
Change Line no. 8843 from var rawValue = numeral().unformat(elValue); to var rawValue = numeral(elValue).value();
var rawValue = numeral().unformat(elValue);
var rawValue = numeral(elValue).value();
Change Line no. 9813 from rawValue = numeral().unformat(newVal); to rawValue = numeral(newVal).value();
rawValue = numeral().unformat(newVal);
rawValue = numeral(newVal).value();
Sorry, something went wrong.
No branches or pull requests
i used defaultFormat option with Numeral-js lastest version.
you can found error "unformat" beacuse Numeral-js remove it in version 2
2.0.0
The text was updated successfully, but these errors were encountered: