拆分数据处理分类,新增编码加密、数学计算分类

This commit is contained in:
fofolee
2025-01-08 16:13:50 +08:00
parent 430466c38c
commit 8003497e71
18 changed files with 271 additions and 239 deletions

View File

@@ -4,6 +4,8 @@ const quickcomposer = {
file: require("./quickcomposer/file"),
system: require("./quickcomposer/system"),
network: require("./quickcomposer/network"),
coding: require("./quickcomposer/coding"),
math: require("./quickcomposer/math"),
};
module.exports = quickcomposer;

View File

@@ -0,0 +1,9 @@
const crypto = require("./crypto");
const hash = require("./hash");
const encoder = require("./encoder");
module.exports = {
...crypto,
...hash,
...encoder,
};

View File

@@ -1,17 +1,9 @@
const encoder = require("./encoder");
const hash = require("./hash");
const string = require("./string");
const crypto = require("./crypto");
const buffer = require("./buffer");
const zlib = require("./zlib");
const random = require("./random");
module.exports = {
...encoder,
...hash,
...string,
...crypto,
buffer,
zlib,
random,
};

View File

@@ -0,0 +1,5 @@
const random = require("./random");
module.exports = {
random,
};