Skip to content

Commit 423498f

Browse files
authored
style: fix unconventional line breaks
Signed-off-by: Athan <kgryte@gmail.com>
1 parent ca0dbda commit 423498f

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/smskmin/test

lib/node_modules/@stdlib/stats/base/ndarray/smskmin/test/test.js

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
151151
var x;
152152
var v;
153153

154-
x = new Float32Array( [ 1.0, // 0
154+
x = new Float32Array([
155+
1.0, // 0
155156
2.0,
156157
2.0, // 1
157158
-7.0,
@@ -162,7 +163,8 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
162163
5.0, // 4
163164
6.0
164165
]);
165-
mask = new Uint8Array( [ 0, // 0
166+
mask = new Uint8Array([
167+
0, // 0
166168
0,
167169
0, // 1
168170
0,
@@ -184,7 +186,8 @@ tape( 'the function supports one-dimensional ndarrays having negative strides',
184186
var x;
185187
var v;
186188

187-
x = new Float32Array( [ 5.0, // 4
189+
x = new Float32Array([
190+
5.0, // 4
188191
6.0,
189192
1.0, // 3
190193
2.0,
@@ -195,7 +198,8 @@ tape( 'the function supports one-dimensional ndarrays having negative strides',
195198
4.0, // 0
196199
2.0
197200
]);
198-
mask = new Uint8Array( [ 1, // 4
201+
mask = new Uint8Array([
202+
1, // 4
199203
1,
200204
0, // 3
201205
0,
@@ -217,7 +221,8 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
217221
var x;
218222
var v;
219223

220-
x = new Float32Array( [ 2.0,
224+
x = new Float32Array([
225+
2.0,
221226
1.0, // 0
222227
2.0,
223228
-2.0, // 1
@@ -228,7 +233,8 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
228233
5.0,
229234
6.0 // 4
230235
]);
231-
mask = new Uint8Array( [ 0,
236+
mask = new Uint8Array([
237+
0,
232238
0, // 0
233239
0,
234240
0, // 1

0 commit comments

Comments
 (0)