Jake Verbaten

Results 307 comments of Jake Verbaten
trafficstars

Right, this behavior should change to only handle the `OPTIONS` method.

I just finished [feature](https://github.com/Raynos/feature). This will allow you to define what features are needed. Something like ``` if (window.features && [ "DOM.Element.getAttribute", "DOM.Document.createElement", ... ].every(function (n) { return window.features[n]; }))...

If there is no good alternative then it's a good idea. I need to do my own research to tell whether there are alternatives.

Btw: - flamegraph generated by https://github.com/uber-node/node-flame ( only on node0.10 ) - svg generated by https://github.com/brendangregg/FlameGraph If `node-flame` doesn't work, then you could also play with `0x` ( https://github.com/davidmarkclements/0x )...

You mentioned you were going to implement all the other array methods like .map, .filter, .every, .some, etc. I would find it confusing if you had all array methods but...

> jQuery also adds .size() and .each() methods to Array.prototype Lies. `[].size === undefined` && `[].each === undefined` jQuery returns a jquery object not an array. This jQuery object has...

That hook doesn't help at all with the typescript definitions. Currently i cast the logger to an interface with a stricter type definition. But really it's a footgun for everyone.

``` oxlint -c=./.oxlintrc.json --tsconfig=./tsconfig.json . -D correctness -D perf -D suspicious --promise-plugin --import-plugin --fix ``` ```json { "settings": {}, "rules": { "no-unused-vars": "allow", "no-new-array": "allow", "no-empty-file": "allow", "no-document-cookie": "allow", "no-this-alias":...

> one file that disappeared is workspaces/metrics-exporter/src/metadataQueue.ts when I hadn't touched anything in that workspace coworker mentioned a file was truncated in a directory he has not touched on his...