aboutsummaryrefslogtreecommitdiff
path: root/node_modules/chai-http/lib/net.js
blob: 12fbab88eaa03f4b8c8bbd8500a3b35221b33728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*!
 * chai-http - request helper
 * Copyright(c) 2011-2012 Jake Luer <jake@alogicalparadox.com>
 * MIT Licensed
 */

/*!
 * net.isIP shim for browsers
 */
var isIP = require('is-ip');

exports.isIP = isIP;
exports.isIPv4 = isIP.v4;
exports.isIPv6 = isIP.v6;