Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xotic750/parse-int-x
Parses a string argument and returns an integer of the specified radix.
https://github.com/xotic750/parse-int-x
browser javascript nodejs parseint
Last synced: about 1 month ago
JSON representation
Parses a string argument and returns an integer of the specified radix.
- Host: GitHub
- URL: https://github.com/xotic750/parse-int-x
- Owner: Xotic750
- License: mit
- Created: 2017-09-29T22:47:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:54:29.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T20:33:24.546Z (about 2 months ago)
- Topics: browser, javascript, nodejs, parseint
- Language: JavaScript
- Size: 2.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## parse-int-x
Parses a string argument and returns an integer of the specified radix.
### `module.exports(string, number)` ⇒
number
⏏### `parse-int-x` ⇒
number
This method parses a string argument and returns an integer of the specified
radix (the base in mathematical numeral systems). (ES2019)**Kind**: static property of [
parse-int-x
](#module_parse-int-x)
**Returns**:number
- An integer number parsed from the given string. If the first
character cannot be converted to a number, NaN is returned.
**Throws**:-
TypeError
If target is a Symbol or is not coercible.| Param | Type | Description |
| ------ | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| string |string
| The value to parse. If the string argument is not a string, then it is converted to a string (using the ToString abstract operation). Leading whitespace in the string argument is ignored. |
| radix |number
| An integer between 2 and 36 that represents the radix (the base in mathematical numeral systems) of the above mentioned string. Specify 10 for the decimal numeral system commonly used by humans. Always specify this parameter to eliminate reader confusion and to guarantee predictable behavior. Different implementations produce different results when a radix is not specified, usually defaulting the value to 10. |**Example**
```js
import $parseInt from 'parse-int-x';// The following examples all return 15
console.log($parseInt(' 0xF', 16));
console.log($parseInt(' F', 16));
console.log($parseInt('17', 8));
console.log($parseInt(021, 8));
console.log($parseInt('015', 10)); // $parseInt(015, 10); will return 15
console.log($parseInt(15.99, 10));
console.log($parseInt('15,123', 10));
console.log($parseInt('FXX123', 16));
console.log($parseInt('1111', 2));
console.log($parseInt('15 * 3', 10));
console.log($parseInt('15e2', 10));
console.log($parseInt('15px', 10));
console.log($parseInt('12', 13));//The following examples all return NaN:
console.log($parseInt('Hello', 8)); // Not a number at all
console.log($parseInt('546', 2)); // Digits are not valid for binary representations
```