es7
Here are 546 public repositories matching this topic...
-
Updated
May 14, 2020 - JavaScript
add mobx example
I'm using this project and want to add mobx for state management.
I'm happy to PR documentation/example with some guidance!
Thoughts? @tirthbodawala
-
Updated
May 17, 2020 - Vue
-
Updated
Feb 22, 2020 - Vue
-
Updated
Nov 1, 2019 - JavaScript
-
Updated
Dec 18, 2019 - JavaScript
When commenting out multiple lines with line comments (cmd + /), empty lines in the selection will get comments and the space on those lines will affect the indent level of the comments. For example this...


- Robust automated tests
- Allow passing options to emcc
- Figure out the sanitization of the file url...it is not sanitized and goes straight into the shell...is that okay? Zwitterion should only b
Add --open flag
Setting a custom tagged template grammar like csscustom:source.css and using it on a file
let csscustom = () => {};
csscustom`
a{
color:#fff;
}
`;produces a warning Callback must be a function and does not highlight the text differently

const Huncwot = require('huncwot')
const app1 = express()
const app2 = new Huncwot()
app1.get('/', () => /* proxy to app2 here */)
app2.get('/', () => 'foo')
app1.listen(3333)
app2.listen(3334)Not ideal for performance for sure, but it should make it
-
Updated
Mar 23, 2020 - CSS
-
Updated
Mar 27, 2019 - JavaScript
-
Updated
May 1, 2020 - JavaScript
-
Updated
Mar 12, 2020 - JavaScript
We don't need to transpile certain babel env plugins that are disabled by the user in their Babel env settings.
We could sniff this from user's Babel config.
Or at least provide an option here to manually override considering certain babel env plugins from consideration for transpiling.
const rectangle = {
width: 20,
height:10,
area: 200
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width, height, area, perimeter) //20 10 200 60
//Lets modify the object:width to 30 and perimeter to 80
const rectangle = {
width: 30,
height:10,
area: 200,
perimeter:80
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width
Improve this page
Add a description, image, and links to the es7 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the es7 topic, visit your repo's landing page and select "manage topics."


If the document.domain property is set in the page,
_hasmodule throws error "Access is denied" when try to check window's property for example 'hasOwnProperty'.So I think it is better to change
_hasmodule like below.