Swap-Aggregator-Subgraph/node_modules/number-to-bn
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30
..
dist Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
internals/webpack Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
node_modules/bn.js Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
src Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.editorconfig Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.gitattributes Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.npmignore Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.travis.yml Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.zuul.yml Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
CHANGELOG.md Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
LICENSE Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
package.json Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
README.md Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30

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.