adamwdraper / Numeral-js

A javascript library for formatting and manipulating numbers.
http://numeraljs.com
MIT License
9.65k stars 926 forks source link

reset to en-US #776

Open bonesoul opened 1 year ago

bonesoul commented 1 year ago

I do have a multilanguage site where I do switch to specific locales. Though on some pages I want to reset back to en-US but can't find the definition for it.

Currently I do use this:

import numeral from "numeral";
import "numeral/locales/en-gb";
numeral.locale("en"); // register numeral locale.

But i want to reset back to en-US, is it possible?

bonesoul commented 1 year ago

anyone here having the same issue?