MintedKitten / parseInteger

Parse Exclusively Safe Integer From String

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NPM version

parseInteger

Parse Exclusively Safe Integer From String

Example

import { parseInteger } from "parseinteger";

const number = parseInteger("42");
console.log(`The answer is ${number}`); // The answer is 42

try {
  const number = parseInteger("17.5");
} catch (e) {
  if (e instanceof TypeError) {
    // Handle the TypeError
    console.log(e.message);
  } else if (e instanceof RangeError) {
    // Handle the RangeError
    console.log(e.message);
  }
}

License

This plugin is issued under the MIT license.

About

Parse Exclusively Safe Integer From String

License:MIT License


Languages

Language:TypeScript 75.2%Language:JavaScript 24.8%