@magic-xpa/utils 4.1000.0-dev4100.7 → 4.1000.0-dev4100.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-xpa/utils",
3
- "version": "4.1000.0-dev4100.7",
3
+ "version": "4.1000.0-dev4100.71",
4
4
  "description": "magic utils package",
5
5
  "license": "SEE LICENSE IN EULA.pdf",
6
6
  "dependencies": {
@@ -8,7 +8,7 @@
8
8
  "tslib": "^2.3.0"
9
9
  },
10
10
  "peerDependencies": {
11
- "@magic-xpa/mscorelib": "4.1000.0-dev4100.7"
11
+ "@magic-xpa/mscorelib": "4.1000.0-dev4100.71"
12
12
  },
13
13
  "module": "fesm2015/magic-xpa-utils.mjs",
14
14
  "es2020": "fesm2020/magic-xpa-utils.mjs",
package/src/Base64.d.ts CHANGED
@@ -2,18 +2,14 @@ import { Encoding } from "@magic-xpa/mscorelib";
2
2
  export declare class Base64 {
3
3
  private static _base64EncMap;
4
4
  private static _base64DecMap;
5
- static encode(str: string, encoding: Encoding): string;
5
+ static encode(str: string): string;
6
6
  static encode(str: string, isUseEnvCharset: boolean, encoding: Encoding): string;
7
- static encode(data: Uint8Array): Uint8Array;
8
- private static encode_0;
9
7
  private static encode_1;
10
- private static encode_2;
8
+ private static encodeBytes;
11
9
  static decode(str: string): string;
12
10
  static decode(str: string, encoding: Encoding): string;
13
- static decode(data: Uint8Array): Uint8Array;
14
- private static decode_0;
15
11
  private static decode_1;
16
- private static decode_2;
12
+ private static decodeBytes;
17
13
  static decodeToHex(str: string): string;
18
14
  static decodeToByte(str: string): Uint8Array;
19
15
  private static initializeEncMap;