Skip to content

Commit a2d0296

Browse files
committed
Auto-generated commit
1 parent 70e5577 commit a2d0296

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

test/test.factory.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
4444
true,
4545
false,
4646
null,
47-
undefined,
47+
void 0,
4848
{},
4949
[]
5050
];
@@ -72,7 +72,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
7272
true,
7373
false,
7474
null,
75-
undefined,
75+
void 0,
7676
{},
7777
[]
7878
];
@@ -104,7 +104,7 @@ tape( 'the function throws an error if provided an `options` argument which is n
104104
true,
105105
false,
106106
null,
107-
undefined,
107+
void 0,
108108
[],
109109
function noop() {}
110110
];
@@ -138,7 +138,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
138138
true,
139139
false,
140140
null,
141-
undefined,
141+
void 0,
142142
[],
143143
{},
144144
function noop() {}
@@ -193,7 +193,7 @@ tape( 'the returned function throws an error if not provided a collection (no op
193193
true,
194194
false,
195195
null,
196-
undefined,
196+
void 0,
197197
{},
198198
function noop() {},
199199
/.*/,
@@ -230,7 +230,7 @@ tape( 'the returned function throws an error if not provided a collection (optio
230230
true,
231231
false,
232232
null,
233-
undefined,
233+
void 0,
234234
{},
235235
function noop() {},
236236
/.*/,
@@ -267,7 +267,7 @@ tape( 'the returned function throws an error if not provided a callback function
267267
true,
268268
false,
269269
null,
270-
undefined,
270+
void 0,
271271
{},
272272
[]
273273
];
@@ -302,7 +302,7 @@ tape( 'the returned function throws an error if not provided a callback function
302302
true,
303303
false,
304304
null,
305-
undefined,
305+
void 0,
306306
{},
307307
[]
308308
];

test/test.inmap_right.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tape( 'the function throws an error if not provided a collection', function test
4848
true,
4949
false,
5050
null,
51-
undefined,
51+
void 0,
5252
{},
5353
function noop() {},
5454
/.*/,
@@ -78,7 +78,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
7878
true,
7979
false,
8080
null,
81-
undefined,
81+
void 0,
8282
{},
8383
[]
8484
];
@@ -106,7 +106,7 @@ tape( 'the function throws an error if not provided a function to invoke for eac
106106
true,
107107
false,
108108
null,
109-
undefined,
109+
void 0,
110110
{},
111111
[]
112112
];
@@ -138,7 +138,7 @@ tape( 'the function throws an error if not provided a callback function (no opti
138138
true,
139139
false,
140140
null,
141-
undefined,
141+
void 0,
142142
{},
143143
[]
144144
];
@@ -170,7 +170,7 @@ tape( 'the function throws an error if not provided a callback function (options
170170
true,
171171
false,
172172
null,
173-
undefined,
173+
void 0,
174174
{},
175175
[]
176176
];
@@ -202,7 +202,7 @@ tape( 'the function throws an error if provided an `options` argument which is n
202202
true,
203203
false,
204204
null,
205-
undefined,
205+
void 0,
206206
[],
207207
function noop() {}
208208
];
@@ -236,7 +236,7 @@ tape( 'the function throws an error if provided an invalid option', function tes
236236
true,
237237
false,
238238
null,
239-
undefined,
239+
void 0,
240240
[],
241241
{},
242242
function noop() {}

test/test.validate.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'the function returns an error if provided an `options` argument which is
4242
5,
4343
true,
4444
false,
45-
undefined,
45+
void 0,
4646
null,
4747
NaN,
4848
[],
@@ -69,7 +69,7 @@ tape( 'the function returns an error if provided a `limit` option which is not a
6969
3.14,
7070
true,
7171
false,
72-
undefined,
72+
void 0,
7373
null,
7474
NaN,
7575
[],
@@ -96,7 +96,7 @@ tape( 'the function returns an error if provided a `series` option which is not
9696
values = [
9797
'5',
9898
5,
99-
undefined,
99+
void 0,
100100
null,
101101
NaN,
102102
[],
@@ -125,7 +125,7 @@ tape( 'the function accepts any value for the `thisArg` option', function test(
125125
5,
126126
true,
127127
false,
128-
undefined,
128+
void 0,
129129
null,
130130
NaN,
131131
[],

0 commit comments

Comments
 (0)