-
**I'm submitting a ...** (check one with "x")
```
[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit suppo…
-
At the moment, `instanceof` checks do only work for classes that extend `js.Object`. Unfortunately case classes must not extend `js.Object`.
Motivation (copied from Gitter): I would like to define …
-
There is one last bit left to implement in order to fulfill the [Stampit v3 RFC](https://github.com/stampit-org/stampit/issues/163) - the `convertConstructor` function.
I'm seeking for a volunteer to…
-
For people preferring functions over classes, or simply to overload easily the behavior of an existing object, we may consider too some kind of:
```js
Object.defineOperator(obj, '+', () => (a, b) …
-
Right now we only recommend `prettier`:
```json
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 80
}
```
@j…
-
**Describe the bug**
When trying to run the following code in a Databricks notebook
```
from keplergl import KeplerGl
import pandas as pd
df = pd.DataFrame({
"hex_id": ["8c2a100d26655ff"]
…
-
SyntaxError: @autobind can only be used on functions, not: undefined
@autobind
class AGreatComponent extends React.Component {
...
}
My guess is there's a problem in the class vs function detection …
-
Steps to reproduce:
- Have a base class with a method named "foo"
- Extend the base class and add a method named "bar"
- Use stubConstructor to stub methods of the latter class
Code sample:
`…
-
The idea is close to the approach of ES5 of "strict": it changed the behaviour of Javascript but just in functions or files.
For example, imagine that we can do something like:
```javascript
st…
-
Thanks for a nice lib!
Seems like the babel transpilation step is not working correctly, should there really be "=>" in the output file?
`./mixwith.js`:
```
const Cached = exports.Cached = mi…