TuyaAPI / cli

🔧 A CLI for Tuya devices
MIT License
267 stars 43 forks source link

control: fix check if argument is number #77

Closed pabigot closed 4 years ago

pabigot commented 4 years ago

Number.isNaN("colour") returns false so things break. +"colour" is NaN so Number.isNaN(+"colour") returns true and things work. Style checker requires that +x be spelled Number(x).

Fixes #75

codetheweb commented 4 years ago

Looks good to me, your reasoning makes sense.

Thanks for the contributions.

codetheweb commented 4 years ago

Published @1.13.3.