Rafael De Leon

Results 5 issues of Rafael De Leon

I was looking at https://github.com/jed/140bytes/wiki/Byte-saving-techniques and the majority of examples on what is byte saving is what something like Uglify should be doing. Other examples like ```js setInterval('console.log("z")',100) // after...

I read the [last part of the readme](https://github.com/atomictag/incremental-bars/blob/d386d14ea9c01700356fce351a0118500a8b0232/README.md#rationale) but it would be nice if this can be used by browsers via UMD.

question

This is kind of a dup of #2267 but with a proposal to use [Benchmark.js](https://benchmarkjs.com/docs) It could/should be included in the PR checks. Although it might display false reports in...

enhancement
tooling

Example: https://codesandbox.io/s/zen-ritchie-dkygj0?file=/src/index.js ```js const obj1 = { [Symbol.for("hi")]: 1 }; const obj2 = { [Symbol.for("hi")]: 2 }; console.log(fastDeepEqual(obj1, obj2)) // `true` when it should be `false` ```

the following lines will produce unsafe-eval when using content-security-policy https://github.com/ytiurin/downscale/blob/master/src/downscale.js#L14 https://github.com/ytiurin/downscale/blob/master/src/downscale.js#L20 The use of `new Function` is considered unsafe. I am not sure why this approach was taken, but my...