ToothlessGear / node-gcm

A NodeJS wrapper library port to send data to Android devices via Google Cloud Messaging
https://github.com/ToothlessGear/node-gcm
Other
1.3k stars 206 forks source link

Replace util.isArray() with Array.isArray() #158

Closed bastienleonard closed 8 years ago

bastienleonard commented 8 years ago

util.isArray() just got deprecated and is effectively the same as Array.isArray().

https://github.com/nodejs/node/blob/master/lib/util.js#L598 http://stackoverflow.com/a/22848148/88851

hypesystem commented 8 years ago

Great, thanks!