Skip to main content
Module

x/polkadot/util/bundle.ts>hexFixLength

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

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