Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/polkadot/util/bn/toBn.ts>bnToBn

Package publishing for deno.land/x/polkadot
Go to Latest
function bnToBn
import { bnToBn } from "https://deno.land/x/polkadot@0.2.25/util/bn/toBn.ts";

Examples

import BN from 'https://esm.sh/bn.js@5.2.1';
import { bnToBn } from 'https://deno.land/x/polkadot@0.2.25/util/mod.ts';

bnToBn(0x1234); // => BN(0x1234)
bnToBn(new BN(0x1234)); // => BN(0x1234)

Type Parameters

ExtToBn extends ToBigInt | ToBn

Parameters

optional
value:
| BN
| bigint
| string
| number
| null