Fix typo from 'arraify' to 'arrayify' (#595)

This commit is contained in:
Chad Whitacre
2016-11-02 08:36:31 -04:00
committed by Fagner Brack
parent 1bf05799a0
commit 82bc45e6b0

View File

@@ -56,7 +56,7 @@
} )(); } )();
// `arraify` takes an array-like object and turns it into real Array // `arrayify` takes an array-like object and turns it into real Array
// to make all the Array.prototype goodness available. // to make all the Array.prototype goodness available.
var arrayify = function( a ) { var arrayify = function( a ) {
return [].slice.call( a ); return [].slice.call( a );