Skip to content
This repository has been archived by the owner on Sep 5, 2018. It is now read-only.

Commit

Permalink
Merge pull request #70 from gitterHQ/revert-69-revert-68-optional_arr…
Browse files Browse the repository at this point in the history
…ay_from_polyfill

Do not override "Array.from" with shim version if it is available.

See #68
  • Loading branch information
MadLittleMods committed Feb 13, 2018
2 parents b848bd7 + eafd069 commit 200b367
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/chat.js
@@ -1,5 +1,7 @@
import {shim as arrayFromShim} from 'array.from';
arrayFromShim();
if (!Array.from) {
arrayFromShim();
}
import objectAssign from 'object-assign';
import {Promise} from 'es6-promise';
import Symbol from './basic-symbol-ponyfill';
Expand Down

0 comments on commit 200b367

Please sign in to comment.