number-to-bn

WebJar for number-to-bn

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

number-to-bn
Last Version

Last Version

1.7.0
Release Date

Release Date

Type

Type

jar
Description

Description

number-to-bn
WebJar for number-to-bn
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/SilentCicero/number-to-bn

Download number-to-bn

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/number-to-bn/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>number-to-bn</artifactId>
    <version>1.7.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/number-to-bn/
implementation 'org.webjars.npm:number-to-bn:1.7.0'
// https://jarcasting.com/artifacts/org.webjars.npm/number-to-bn/
implementation ("org.webjars.npm:number-to-bn:1.7.0")
'org.webjars.npm:number-to-bn:jar:1.7.0'
<dependency org="org.webjars.npm" name="number-to-bn" rev="1.7.0">
  <artifact name="number-to-bn" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='number-to-bn', version='1.7.0')
)
libraryDependencies += "org.webjars.npm" % "number-to-bn" % "1.7.0"
[org.webjars.npm/number-to-bn "1.7.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.npm : bn.js jar [4.11.6]
org.webjars.npm : strip-hex-prefix jar [1.0.0]

Project Modules

There are no modules declared in this project.

number-to-bn


A simple method to convert integer or hex integer numbers to BN.js object instances. Does not supprot decimal numbers.

Install

npm install --save number-to-bn

Usage

const numberToBN = require('number-to-bn');

console.log(numberToBN('-1'));

// result <BN ...> -1

console.log(numberToBN(1));

// result <BN ...> 1

console.log(numberToBN(new BN(100)));

// result <BN ...> 100

console.log(numberToBN(new BigNumber(10000)));

// result <BN ...> 10000

console.log(numberToBN('0x0a'));

// result <BN ...> 10

console.log(numberToBN('-0x0a'));

// result <BN ...> -10

console.log(numberToBN('0.9')); // or {}, [], undefined, 9.9

// throws new Error(...)

console.log(numberToBN(null)); // or {}, [], undefined, 9.9

// throws new Error(...)

Important documents

Licence

This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.

The MIT License

Copyright (c) 2016 Nick Dodson. nickdodson.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Versions

Version
1.7.0