mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-09-24 04:53:31 +08:00
拆分数据处理分类,新增编码加密、数学计算分类
This commit is contained in:
9
plugin/lib/quickcomposer/coding/index.js
Normal file
9
plugin/lib/quickcomposer/coding/index.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const crypto = require("./crypto");
|
||||
const hash = require("./hash");
|
||||
const encoder = require("./encoder");
|
||||
|
||||
module.exports = {
|
||||
...crypto,
|
||||
...hash,
|
||||
...encoder,
|
||||
};
|
@@ -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,
|
||||
};
|
||||
|
5
plugin/lib/quickcomposer/math/index.js
Normal file
5
plugin/lib/quickcomposer/math/index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const random = require("./random");
|
||||
|
||||
module.exports = {
|
||||
random,
|
||||
};
|
Reference in New Issue
Block a user