Andrew Plummer
Andrew Plummer
With the following JSX: ``` ``` The `%` key will not jump to (or highlight) the closing tag for ``. I'm using this with the `maxmellon/vim-jsx-pretty`, unsure which is responsible...
For some reason when using this plugin the output results in double quotes even though the input is single quotes: `import foo from "../foo";` When not using the plugin the...
Would like to at least consider `Date.create` throwing errors on invalid input and opening this to discussion. Pros: Simpler handling through normal control flow. Cons: Not consistent with `new Date`...
Falling back was at one point a safety but the Sugar library has matured and handles many if not all native formats. Falling back now makes the library vulnerable to...
via Twitter from _@ioquatix_ Version 2.0.0 added chainable behavior, however one note I immediately got is that the behavior of having to unwrap boolean values, either explicitly using the `raw`...
Requiring or including Sugar polyfills currently immediately apply the polyfill to the global object. For example, the `es6` module (which is included in the default package) immediately applies the polyfill...
Sugar currently allows requiring by "module", however all modules return the global object: ```javascript require('sugar'); require('sugar/array'); require('sugar/enumerable'); ``` All of the above return simply the root `Sugar` object. The reason...
Proposal: Allow a prefix when extending methods to natives and their prototypes. This behavior was introduced by [Agave.js](http://agavejs.org/). It would work like this: ``` javascript Sugar.extend({ prefix: 'xx' }); ```...
Hi, this seems like a potentially common issue but I haven't found anything directly addressing it. Enzyme seems to throw the error: `ReactShallowRenderer render(): Shallow rendering works only with custom...