I hereby claim:
- I am codestryke on github.
- I am anandraman (https://keybase.io/anandraman) on keybase.
- I have a public key ASA86mxgPi2pITzV4qW-g3pIBEDaN_dDiuYfEoW-C-3sygo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var elems = document.querySelectorAll('.js-details-target'); | |
for( var i = 0; i < elems.length; i++ ) { | |
elems[i].click(); | |
} |
From http://read.humanjavascript.com/ch03-code-for-humans.html
All of this is to say: WRITE CODE THAT IS EASY TO READ!
const TerserPlugin = require("terser-webpack-plugin"); | |
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); | |
const path = require('path'); | |
module.exports = { | |
entry: './index.js', | |
mode: 'development', | |
optimization: { | |
minimize: false, | |
minimizer: [ |