Shane F. Carr
Shane F. Carr
In Chrome and Firefox, the following code loses the sign of the year. ```javascript new Date(-753, 5, 21).toLocaleDateString() // "6/21/754" ``` My expected output would be for the Gregorian calendar...
Currently we support four currencyDisplay values: - "symbol" to use a localized currency symbol such as €, this is the default value, - "narrowSymbol" to use a narrow format symbol...
This issue was originally reported as https://github.com/tc39/proposal-intl-numberformat-v3/issues/34 by @Yaffle. @Yaffle said: > I have some "numeric calculator". I am using "bigdecimal" library and so do the rounding (to specified number...
@littledan suggested adding rounding modes to the Intl.NumberFormat V3 proposal. The spec currently says: > Let n be an integer for which the exact mathematical value of n ÷ 10^(f...
### Problem It appears that a recent rustup update today caused our GitHub Actions CI to start failing to install a pinned nightly version. Passing (7hrs ago): https://github.com/unicode-org/icu4x/actions/runs/2650696918 Failing (1hr...
It would be a time-saver if an example showing how to download a file and save it to the filesystem could be added to the reqwest docs. I came up...
It would be cool to write Rust code that could accept a `&dyn vfs::filesystem::FileSystem` argument and then read data from a variety of file system formats. You already have `AltrootFS`,...
It would be cool to write Rust code that could accept a `&dyn chicon::FileSystem` argument and then read data from a variety of file system formats. It would be nifty...
On Rust Nightly, I got the following pattern match to work: ```rust const FOO: TinyStr16 = tinystr16!("foo"); const BAR: TinyStr16 = tinystr16!("bar"); match tinystr_input { FOO => /* ... */,...