Skip to main content
Module

x/polkadot/mod.ts>util.hexFixLength

Package publishing for deno.land/x/polkadot
Go to Latest
function util.hexFixLength
import { util } from "https://deno.land/x/polkadot@0.2.40/mod.ts";
const { hexFixLength } = util;

Examples

import { hexFixLength } from 'https://deno.land/x/polkadot@0.2.40/util/mod.ts';

console.log('fixed', hexFixLength('0x12', 16)); // => 0x12
console.log('fixed', hexFixLength('0x12', 16, true)); // => 0x0012
console.log('fixed', hexFixLength('0x0012', 8)); // => 0x12

Parameters

value: string
optional
bitLength = [UNSUPPORTED]
optional
withPadding = [UNSUPPORTED]

Returns

HexString