-
Currently, in the generation template, all the functions are rendered in `function AboutUsPage() {}` format.
Change this to arrow functions: `const AboutUsPage = () => {}` to preserve the consistency…
-
This extension should support arrow functions too.
Currently the following code:
Gets transformed to:
While it should instead become something like this:
-
Currently, the following would not be highlighted as an arrow function:
```js
let a = (
param1,
param2
) => {
// Body
}
```
This limitation is from sublime itself as you can see [her…
-
### Describe the bug
`coalesce()` no longer considers `Utf8` and `Utf8View` columns as the same type.
### To Reproduce
```rust
use datafusion::common::arrow::array::{ArrayRef, StringArray, StringV…
-
### Description
A Brief Introduction of Arrow Functions in Javascript
### Domain
Frontend Dev HTML/CSS/JS
### Type of Contribution
Documentation
### Code of Conduct
- [X] I follow [Contributing…
-
() => {}
-
I'm using the following custom FloatingUI options in the "defaultStepOptions":
```
const shepherdTour = new Shepherd.Tour({
steps: tourOptions.steps,
keyboardNavigation: true,
defau…
-
Over the past years, my personal preference on functions vs. arrow functions has shifted towards arrow functions. I used to be against arrow functions as a general replacement as they behave different…
jhnns updated
3 years ago
-
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
Follow up to https://github.com/apache/arrow-rs/pull/5070
Applications and libraries wil…
-
Class methods declared via arrow functions are not listed in the tree view.
```javascript
class Article extends Component {
changesection = (section) => {
this.setState({section});
…