Joe Pea
Joe Pea
Based on @rdking's [example](https://github.com/tc39/proposal-private-fields/issues/14#issuecomment-324530278), see if there's a way we can improve inheriting from Array.
In src/native.js, we're checking for an error message `use the 'new' operator` (of Chrome) to detect if it fails as part of the native.js implementation, but maybe the error message...
Currently, Mixins do not work properly in some cases because the [Mixin](https://github.com/trusktr/lowclass/blob/master/src/Mixin.js) helper generates new classes, so for example multiple applications of a mixin may generate multiple classes that are...
Make a feature similar to `protected constructor() {}` and `private constructor() {}` in TypeScript. Maybe it isn't completely possible. For example, how do we prevent someone from doing `class Foo...
See conversation in https://github.com/babel/proposals/issues/12
Is there some way to try the module concept today with some polyfill? Or maybe a custom element? Curious if you've seen one. Will keep searching...
I was trying to use this with TypeScript, but it fails. Trying to compile with TypeScript first fails with SyntaxErrors too. Example webpack.config.js: ```js var webpack = require('webpack'); module.exports =...
Is there something like ```js let style = cssx` body { color: blue; div { box-sizing: border-box; } } ` ``` ?
I have a file that contains this: ``` js import jss from 'src/lib/jss' let style = #navbar-logo{ margin-top: -4px; } .register-button:hover{ color: white; -webkit-box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.75); -moz-box-shadow:...