Closed akkie closed 6 years ago
A git grep Uint
shows this isn't in the actual source but is being added by browserify. We need to fix, but on the browserify level.
+1. Would love to see a fix for this.
@glomotion Have you sent a PR?
Heh. Browserify's definitely not my bag - It's black magic IMO. I could maybe help get a webpack build process together. But thing is, these build tools spit out code for modern browsers. I suspect we'd have the same problem with Webpack. A quick google of the issue makes me think a typed array polyfill might do the job. Ill try it out and submit a PR if it works.
The correct thing to do would be to use custom version of 'deep-extend'. We do not need support for extending arrays of any kind nor do we need any support for extending Buffers either. deepe-extend pulls in all sorts of crap turning this whole thing into a 41KB behemoth.
Will submit pull request soon.
Thanks Jesse!
On Tue, 23 Oct 2018 at 12:42 pm, Jesse Jaara notifications@github.com wrote:
The correct thing to do would be to use custom version of 'deep-extend'. We do not need support for extending arrays of any kind nor do we need any support for extending Buffers either. deepe-extend pulls in all sorts of crap turning this whole thing into a 41KB behemoth.
Will submit pull request soon.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/mikemaccana/outdated-browser-rework/issues/41#issuecomment-432212398, or mute the thread https://github.com/notifications/unsubscribe-auth/AAKiMiRfeyvOCFR_r1169HbW4my6GpP8ks5unwCJgaJpZM4UkOwk .
IE < 10 doesn't support Uint8Array. It throws an exception at outdated-browser-rework.min.js, Row: 1, Column: 17431.
It shows also the message: This browser lacks typed array (Uint8Array) support which is required by
buffer
v5.x. Usebuffer
v4.x if you require old browser support.