Updated category and fixed imports

This commit is contained in:
mshwed 2025-02-15 23:03:05 -05:00
parent 15bbed093c
commit 2ae923b73e
3 changed files with 8 additions and 7 deletions

View file

@ -76,7 +76,8 @@
"Rison Encode", "Rison Encode",
"Rison Decode", "Rison Decode",
"To Modhex", "To Modhex",
"From Modhex" "From Modhex",
"MIME Decoding"
] ]
}, },
{ {

View file

@ -4,12 +4,12 @@
* @license Apache-2.0 * @license Apache-2.0
*/ */
import Operation from "../Operation"; import Operation from "../Operation.mjs";
import OperationError from "../errors/OperationError"; import OperationError from "../errors/OperationError.mjs";
import Utils from "../Utils"; import Utils from "../Utils.mjs";
import { fromHex } from "../lib/Hex.mjs"; import { fromHex } from "../lib/Hex.mjs";
import { fromBase64 } from "../lib/Base64"; import { fromBase64 } from "../lib/Base64.mjs";
import cptable from "../vendor/js-codepage/cptable.js"; import cptable from "codepage";
/** /**
* MIME Decoding operation * MIME Decoding operation

View file

@ -104,7 +104,7 @@ import "./tests/LZNT1Decompress.mjs";
import "./tests/LZString.mjs"; import "./tests/LZString.mjs";
import "./tests/Magic.mjs"; import "./tests/Magic.mjs";
import "./tests/Media.mjs"; import "./tests/Media.mjs";
import "./tests/MIMEDecoding"; import "./tests/MIMEDecoding.mjs";
import "./tests/Modhex.mjs"; import "./tests/Modhex.mjs";
import "./tests/MorseCode.mjs"; import "./tests/MorseCode.mjs";
import "./tests/MS.mjs"; import "./tests/MS.mjs";