Skip to content

Commit 281a5bc

Browse files
Sachin PangalSachin Pangal
authored andcommitted
fixing lint error
1 parent 8dd9b54 commit 281a5bc

File tree

2 files changed

+68
-68
lines changed

2 files changed

+68
-68
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/meanpn/lib/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19+
1920
'use strict';
2021

2122
/**
@@ -38,6 +39,7 @@
3839

3940
var main = require( './main.js' );
4041

42+
4143
// EXPORTS //
4244

43-
module.exports = main;
45+
module.exports = main;
Lines changed: 65 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,66 @@
11
{
2-
"name": "@stdlib/stats/base/ndarray/meanpn",
3-
"version": "0.0.0",
4-
"description": "Compute the arithmetic mean of a one-dimensional ndarray using a two-pass error correction algorithm.",
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-
{
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-
"stdmath",
54-
"statistics",
55-
"stats",
56-
"mathematics",
57-
"math",
58-
"average",
59-
"avg",
60-
"mean",
61-
"arithmetic mean",
62-
"central tendency",
63-
"two-pass",
64-
"pn",
65-
"ndarray"
66-
],
67-
"__stdlib__": {}
68-
}
2+
"name": "@stdlib/stats/base/ndarray/meanpn",
3+
"version": "0.0.0",
4+
"description": "Compute the arithmetic mean of a one-dimensional ndarray using a two-pass error correction algorithm.",
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+
{
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+
"stdmath",
54+
"statistics",
55+
"stats",
56+
"mathematics",
57+
"math",
58+
"average",
59+
"avg",
60+
"mean",
61+
"arithmetic mean",
62+
"central tendency",
63+
"ndarray"
64+
],
65+
"__stdlib__": {}
66+
}

0 commit comments

Comments
 (0)