UNPKG
chai-http
Version:
latest (5.1.2)
next (5.0.0-alpha2)
5.1.2
5.1.1
5.1.0
5.0.0
5.0.0-alpha2
5.0.0-alpha1
4.4.0
4.3.0
4.2.1
4.2.0
4.1.0
4.0.0
3.0.0
2.0.1
2.0.0
1.0.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.0-development
Extend Chai Assertion library with tests for http apis
github.com/chaijs/chai-http
chaijs/chai-http
chai-http
/
lib
/
net.js
15 lines
(12 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*! * 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
;