add base91 support

This commit is contained in:
IChenDEV 2020-08-05 23:58:53 +08:00
parent c9d9730726
commit 4b235e1166
5 changed files with 242 additions and 0 deletions

View file

@ -0,0 +1,22 @@
/**
* Base64 tests.
*
* @author n1474335 [n1474335@gmail.com]
*
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
import TestRegister from "../../lib/TestRegister.mjs";
TestRegister.addTests([
{
name: "From Base91: First",
input: "lM_1Z<jNG",
expectedOutput: "idevlab",
recipeConfig: [
{
op: "From Base64"
},
],
},
]);