Skip to content

Commit fe588c1

Browse files
fix: lint errors
1 parent f19190c commit fe588c1

File tree

3 files changed

+72
-72
lines changed

3 files changed

+72
-72
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ function add( x, y, z, w, v ) {
4848
}
4949

5050
var x = [ [ [ 1.0, 2.0 ] ] ];
51-
var y = [ [ [ 3.0 ], [ 4.0 ] ] ];
51+
var y = [ [ [ 3.0, 4.0 ] ] ];
5252
var z = [ [ [ 5.0 ] ] ];
5353
var w = [ [ [ 2.0 ] ] ];
5454
var v = [ [ [ 1.0 ] ] ];
5555
var out = zeros3d( [ 2, 2, 2 ] );
5656

5757
var shapes = [
58-
[ 1, 2, 1 ],
59-
[ 2, 1, 1 ],
60-
[ 1, 1, 1 ],
61-
[ 2, 2, 1 ],
6258
[ 1, 1, 2 ],
59+
[ 1, 1, 2 ],
60+
[ 1, 1, 1 ],
61+
[ 1, 1, 1 ],
62+
[ 1, 1, 1 ],
6363
[ 2, 2, 2 ]
6464
];
6565

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/examples/examples.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ function add( x, y, z, w, v ) {
2828
}
2929

3030
var shapes = [
31-
[ 1, 1, 3 ],
3231
[ 1, 3, 1 ],
32+
[ 3, 1, 1 ],
3333
[ 1, 1, 3 ],
34-
[ 1, 1, 1 ],
35-
[ 3, 3, 3 ],
34+
[ 3, 3, 1 ],
35+
[ 1, 3, 3 ],
3636
[ 3, 3, 3 ]
3737
];
3838

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
{
2-
"name": "@stdlib/array/base/broadcasted-quinary3d",
3-
"version": "0.0.0",
4-
"description": "Apply a quinary callback to elements in five broadcasted input arrays and assign results to elements in a three-dimensional nested output array.",
5-
"license": "Apache-2.0",
6-
"author": {
2+
"name": "@stdlib/array/base/broadcasted-quinary3d",
3+
"version": "0.0.0",
4+
"description": "Apply a quinary callback to elements in five broadcasted input arrays and assign results to elements in a three-dimensional nested output array.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
712
"name": "The Stdlib Authors",
813
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9-
},
10-
"contributors": [
11-
{
12-
"name": "The Stdlib Authors",
13-
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14-
}
15-
],
16-
"main": "./lib",
17-
"directories": {
18-
"benchmark": "./benchmark",
19-
"doc": "./docs",
20-
"example": "./examples",
21-
"lib": "./lib",
22-
"test": "./test"
23-
},
24-
"types": "./docs/types",
25-
"scripts": {},
26-
"homepage": "https://github.com/stdlib-js/stdlib",
27-
"repository": {
28-
"type": "git",
29-
"url": "git://github.com/stdlib-js/stdlib.git"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/stdlib-js/stdlib/issues"
33-
},
34-
"dependencies": {},
35-
"devDependencies": {},
36-
"engines": {
37-
"node": ">=0.10.0",
38-
"npm": ">2.7.0"
39-
},
40-
"os": [
41-
"aix",
42-
"darwin",
43-
"freebsd",
44-
"linux",
45-
"macos",
46-
"openbsd",
47-
"sunos",
48-
"win32",
49-
"windows"
50-
],
51-
"keywords": [
52-
"stdlib",
53-
"base",
54-
"array",
55-
"multidimensional",
56-
"ndarray",
57-
"matrix",
58-
"3d",
59-
"quinary",
60-
"apply",
61-
"foreach",
62-
"map",
63-
"transform",
64-
"broadcast"
65-
],
66-
"__stdlib__": {}
67-
}
14+
}
15+
],
16+
"main": "./lib",
17+
"directories": {
18+
"benchmark": "./benchmark",
19+
"doc": "./docs",
20+
"example": "./examples",
21+
"lib": "./lib",
22+
"test": "./test"
23+
},
24+
"types": "./docs/types",
25+
"scripts": {},
26+
"homepage": "https://github.com/stdlib-js/stdlib",
27+
"repository": {
28+
"type": "git",
29+
"url": "git://github.com/stdlib-js/stdlib.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/stdlib-js/stdlib/issues"
33+
},
34+
"dependencies": {},
35+
"devDependencies": {},
36+
"engines": {
37+
"node": ">=0.10.0",
38+
"npm": ">2.7.0"
39+
},
40+
"os": [
41+
"aix",
42+
"darwin",
43+
"freebsd",
44+
"linux",
45+
"macos",
46+
"openbsd",
47+
"sunos",
48+
"win32",
49+
"windows"
50+
],
51+
"keywords": [
52+
"stdlib",
53+
"base",
54+
"array",
55+
"multidimensional",
56+
"ndarray",
57+
"matrix",
58+
"3d",
59+
"quinary",
60+
"apply",
61+
"foreach",
62+
"map",
63+
"transform",
64+
"broadcast"
65+
],
66+
"__stdlib__": {}
67+
}

0 commit comments

Comments
 (0)