Skip to content

Commit 913f530

Browse files
committed
refactor all in one obj
1 parent 0109ac1 commit 913f530

1 file changed

Lines changed: 10 additions & 15 deletions

File tree

index.js

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
1-
// export * from "./lib/basic";
2-
// export * from "./lib/conversion";
3-
// export * from "./lib/isMethod";
4-
// export * from "./lib/number";
5-
// export * from "./lib/search";
6-
// export * from "./lib/sort";
7-
81
const basic = require("./lib/basic");
92
const conversion = require("./lib/conversion");
103
const ismethod = require("./lib/isMethod");
114
const number = require("./lib/number");
125
const search = require("./lib/search");
136
const sort = require("./lib/sort");
147

15-
module.exports = {
16-
basic,
17-
conversion,
18-
ismethod,
19-
number,
20-
search,
21-
sort,
22-
};
8+
const mathematica = {
9+
...basic,
10+
...conversion,
11+
...ismethod,
12+
...number,
13+
...search,
14+
...sort
15+
}
16+
17+
module.exports = mathematica;

0 commit comments

Comments
 (0)