UNPKG

hosts-path

Version:

Get the path to the hosts file

11 lines (8 loc) 215 B
'use strict'; var path = require('path'); module.exports = function () { if (process.platform === 'win32') { return path.join(process.env.SYSTEMROOT, '/System32/drivers/etc/hosts'); } return '/etc/hosts'; };