diff options
author | cjihrig <cjihrig@gmail.com> | 2015-01-21 11:36:59 -0500 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2015-01-21 16:21:31 -0500 |
commit | 804e7aa9ab0b34fa88709ef0980b960abca5e059 (patch) | |
tree | 4e09207abd54e30bd62459e43e2f9219619a7256 /lib/os.js | |
parent | 803883bb1a701da12c285fd735233eed7627eada (diff) | |
download | node-new-804e7aa9ab0b34fa88709ef0980b960abca5e059.tar.gz |
lib: use const to define constants
This commit replaces a number of var statements throughout
the lib code with const statements.
PR-URL: https://github.com/iojs/io.js/pull/541
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'lib/os.js')
-rw-r--r-- | lib/os.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ 'use strict'; -var binding = process.binding('os'); -var util = require('util'); -var isWindows = process.platform === 'win32'; +const binding = process.binding('os'); +const util = require('util'); +const isWindows = process.platform === 'win32'; exports.hostname = binding.getHostname; exports.loadavg = binding.getLoadAvg; |