Joshua Searles
Joshua Searles
If the number is negative and rounds down to 0, the formatting is keeping the negative symbol. ```js Globalize.formatNumber(-0.25, { minimumFractionDigits: 0, maximumFractionDigits: 0 }) // yields "-0" // expect...
When using the following format: '¥'#,##0.00;('¥'#,##0.00), it is throwing an error that the format is invalid. This appears to be happening because the pattern is being split on the semicolon...
It's currently not possible to ignore an observable array within a hierarchy. (The code-path for arrays never does this check.) Also instead of having a "beta" file would you consider...
The ES6 tests for "Array.prototype iteration methods" under "Proxy, internal 'get' calls" are failing for filter & map methods in an environment i am testing. The "constructor" property is also...
If a property is already an observableArray it simply gets passed as a getter/setter and does not end up getting wrapped with the array mutator methods. PR coming.