> process.platform
'darwin'
> process.platform = 'huh'
'huh'
> process.platform
'darwin'
> process.version
'v0.11.13'
$ nvm use 0.10.31
Now using node v0.10.31
$ node
> process.platform
'darwin'
> process.platform = 'huh'
'huh'
> process.platform
'huh'
>
Created
October 2, 2014 16:03
-
-
Save geek/21f171388cdac64085e4 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment