Skip to content

Instantly share code, notes, and snippets.

@johnie
Created January 17, 2018 14:26
Show Gist options
  • Save johnie/e3b85c4225eaab7f25b9ce99172260c3 to your computer and use it in GitHub Desktop.
Save johnie/e3b85c4225eaab7f25b9ce99172260c3 to your computer and use it in GitHub Desktop.
Array from simple polyfill
if (!Array.from) {
Array.from = function (object) {
'use strict';
return [].slice.call(object);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment