npm and error messages

This commit is contained in:
2018-10-27 03:51:47 -05:00
parent 692ab70565
commit 025a403027
29601 changed files with 2759363 additions and 14 deletions

31
node_modules/internal-ip/cli.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env node
/* eslint-disable no-nested-ternary */
'use strict';
var meow = require('meow');
var internalIp = require('./');
var cli = meow({
help: [
'Usage',
' $ internal-ip',
'',
'Options',
' -4, --ipv4 Return the IPv4 address (default)',
' -6, --ipv6 Return the IPv6 address',
'',
'Examples',
' $ internal-ip',
' 192.168.0.123',
' $ internal-ip --ipv6',
' fe80::200:f8ff:fe21:67cf'
]
}, {
alias: {
4: 'ipv4',
6: 'ipv6'
}
});
var fn = cli.flags.ipv4 ? 'v4' : cli.flags.ipv6 ? 'v6' : 'v4';
console.log(internalIp[fn]());