Browse Source

Remove Array.isArray() polyfill

Fixes #598
pull/602/head
Sergi Almacellas Abellana 6 years ago
parent
commit
46160eed95
  1. 9
      papaparse.js

9
papaparse.js

@ -5,15 +5,6 @@ https://github.com/mholt/PapaParse @@ -5,15 +5,6 @@ https://github.com/mholt/PapaParse
License: MIT
*/
// Polyfills
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray#Polyfill
if (!Array.isArray)
{
Array.isArray = function(arg) {
return Object.prototype.toString.call(arg) === '[object Array]';
};
}
(function(root, factory)
{
/* globals define */

Loading…
Cancel
Save