mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-28 00:28:02 +00:00
11 lines
528 B
JavaScript
11 lines
528 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.numberToU8a = exports.numberToHex = void 0;
|
|
/**
|
|
* @summary Utility methods to convert to and from `number` values
|
|
*/
|
|
var toHex_js_1 = require("./toHex.js");
|
|
Object.defineProperty(exports, "numberToHex", { enumerable: true, get: function () { return toHex_js_1.numberToHex; } });
|
|
var toU8a_js_1 = require("./toU8a.js");
|
|
Object.defineProperty(exports, "numberToU8a", { enumerable: true, get: function () { return toU8a_js_1.numberToU8a; } });
|