Sergey M.

Results 121 comments of Sergey M.

I got this problem too and my case is different. My project has the following file structure: ``` ├ frontend │ ├ node_modules/ │ ├ tsconfig.json │ └ index.ts └...

I've made a quick research and I've found that it uses `Array.prototype.forEach` in the [wrappy](https://github.com/npm/wrappy) dependency, so it doesn't support IE≤8.

No browser support because of https://github.com/sorribas/after-all/issues/4#issuecomment-363289140. Maybe a polyfill will help but I don't want to make things complicated and spoil the global namespace.

@sorribas I compiled it with Rollup and Babel and got a code with `process.nextTick` which is not defined in browser.

@danielstorch Thank you for the information, it seems to be helpful > So it seems to be something that happens after the fingerprint and components/sources were calculated? This is what...

Is there a URL option to bundle all imports inside a single file? Comments in files produced by jsDeliver say that Rollup is used so it won't be a problem.

@wahabshah It doesn't work in Safari for me. Here is my solution. Add the special sort start event handler to your sortable container: ```jsx const SortableList = SortableContainer(/* your container...

Cloning the whole page to take a screenshot of a small part is an overkill IMHO. I'm wondering whether there is a way to not clone the whole page.

Where does the copy appear? The following code doesn't copy the array content: ```js const array = new Uint8Array([45, 69, 80]); const buffer = array.buffer; const uintView = new Uint8Array(buffer);...

It makes sense, thanks. But I'd suggest a more universal solution: ```js function getUint8Array(bufferOrView) { if (bufferOrView instanceof ArrayBuffer) { return new Uint8Array(bufferOrView); } if (ArrayBuffer.isView(bufferOrView)) { return new Uint8Array(bufferOrView.buffer,...