mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 18:28:02 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.u8aToU8a = u8aToU8a;
|
||||
const toU8a_js_1 = require("../hex/toU8a.js");
|
||||
const buffer_js_1 = require("../is/buffer.js");
|
||||
const hex_js_1 = require("../is/hex.js");
|
||||
const u8a_js_1 = require("../is/u8a.js");
|
||||
const toU8a_js_2 = require("../string/toU8a.js");
|
||||
/**
|
||||
* @name u8aToU8a
|
||||
* @summary Creates a Uint8Array value from a Uint8Array, Buffer, string or hex input.
|
||||
* @description
|
||||
* `null` or `undefined` inputs returns a `[]` result, Uint8Array values returns the value, hex strings returns a Uint8Array representation.
|
||||
* If `strict` is true, `null` or `undefined` will throw an error instead of returning an empty array.
|
||||
* Supports input types: Uint8Array, Buffer, hex string, string, or number array.
|
||||
* @example
|
||||
* <BR>
|
||||
*
|
||||
* ```javascript
|
||||
* import { u8aToU8a } from '@pezkuwi/util';
|
||||
*
|
||||
* u8aToU8a(new Uint8Array([0x12, 0x34]); // => Uint8Array([0x12, 0x34])
|
||||
* u8aToU8a(0x1234); // => Uint8Array([0x12, 0x34])
|
||||
* ```
|
||||
*/
|
||||
function u8aToU8a(value, strict = false) {
|
||||
if (strict && (value === null || value === undefined)) {
|
||||
throw new Error('u8aToU8a: Expected non-null, non-undefined value');
|
||||
}
|
||||
return (0, u8a_js_1.isU8a)(value)
|
||||
// NOTE isBuffer needs to go here since it actually extends
|
||||
// Uint8Array on Node.js environments, so all Buffer are Uint8Array,
|
||||
// but Uint8Array is not Buffer
|
||||
? (0, buffer_js_1.isBuffer)(value)
|
||||
? new Uint8Array(value)
|
||||
: value
|
||||
: (0, hex_js_1.isHex)(value)
|
||||
? (0, toU8a_js_1.hexToU8a)(value)
|
||||
: Array.isArray(value)
|
||||
? new Uint8Array(value)
|
||||
: (0, toU8a_js_2.stringToU8a)(value);
|
||||
}
|
||||
Reference in New Issue
Block a user