UNPKG

bia

Version:

a tool for download git repository

19 lines (16 loc) 324 B
/* * @Author: hzxulin@yeah.net * @Date: 2018-11-20 20:26:36 * @Last Modified by: hzxulin@yeah.net * @Last Modified time: 2018-11-20 20:53:48 */ const ip = require('ip') /** * 获取本地 */ const getIpAddress = () => { console.log('\n\tip: ' + ip.address() + '\n') } module.exports = { getIpAddress, }