Skip to main content
Module

x/polkadot/util/compact/fromU8a.ts>compactFromU8a

Package publishing for deno.land/x/polkadot
Latest
function compactFromU8a
import { compactFromU8a } from "https://deno.land/x/polkadot@0.2.45/util/compact/fromU8a.ts";

Examples

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

const [offset, length] = compactFromU8a(new Uint8Array([254, 255, 3, 0]));

console.log('value offset=', offset, 'length=', length); // 4, 0xffff

Returns

[number, BN]