diff --git a/lib/node_modules/@stdlib/_tools/lint/pkg-json/test/fixtures/invalid.json b/lib/node_modules/@stdlib/_tools/lint/pkg-json/test/fixtures/invalid.json index a9b4f29cf8bf..4a3533ea2482 100644 --- a/lib/node_modules/@stdlib/_tools/lint/pkg-json/test/fixtures/invalid.json +++ b/lib/node_modules/@stdlib/_tools/lint/pkg-json/test/fixtures/invalid.json @@ -1,3 +1,3 @@ { - "name": "beep + "name": "beep } diff --git a/lib/node_modules/@stdlib/ndarray/to-fancy/examples/set_slice.3d.js b/lib/node_modules/@stdlib/ndarray/to-fancy/examples/set_slice.3d.js index 4887033585ba..5385ba006ae1 100644 --- a/lib/node_modules/@stdlib/ndarray/to-fancy/examples/set_slice.3d.js +++ b/lib/node_modules/@stdlib/ndarray/to-fancy/examples/set_slice.3d.js @@ -65,18 +65,18 @@ var s = E( 1, S(0,_,2), _ ); y[ s ] = 100; console.log( toArray( y ) ); /* => - [ - [ - [ 3, 4 ], - [ 5, 6 ], - [ 7, 8 ] - ], - [ - [ 100, 100 ], - [ 11, 12 ], - [ 100, 100 ] - ] - ] + [ + [ + [ 3, 4 ], + [ 5, 6 ], + [ 7, 8 ] + ], + [ + [ 100, 100 ], + [ 11, 12 ], + [ 100, 100 ] + ] + ] */ // Create a vector of zeros: @@ -87,16 +87,16 @@ var z = ndzeros( [ 2 ] ); y[ '0,:,:' ] = z; console.log( toArray( y ) ); /* => - [ - [ - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ] - ], - [ - [ 100, 100 ], - [ 11, 12 ], - [ 100, 100 ] - ] - ] + [ + [ + [ 0, 0 ], + [ 0, 0 ], + [ 0, 0 ] + ], + [ + [ 100, 100 ], + [ 11, 12 ], + [ 100, 100 ] + ] + ] */