mirror of
https://github.com/photonstorm/phaser
synced 2025-01-25 11:25:15 +00:00
11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
|
/**
|
||
|
* A polyfill for Array.isArray
|
||
|
*/
|
||
|
if (!Array.isArray)
|
||
|
{
|
||
|
Array.isArray = function (arg)
|
||
|
{
|
||
|
return Object.prototype.toString.call(arg) === '[object Array]';
|
||
|
};
|
||
|
}
|