Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open more actions menu

Repository files navigation

is-integer-in-range

Tests if a value is an integer in a specified range.

The range is inclusive of the start and end values.

Install

npm install --save is-integer-in-range

or

yarn add is-integer-in-range

Examples

import isIntegerInRange from "is-integer-in-range";
isIntegerInRange(5, 1, 10); // -> true
isIntegerInRange(5.1, 1, 10); // -> false
isIntegerInRange(0, 1, 10); // -> false
isIntegerInRange(1, 1, 10); // -> true
isIntegerInRange(10, 1, 10); // -> true
isIntegerInRange(11, 1, 10); // -> false

API

isIntegerInRange

Tests if the specified value is an integer in the specified range.

The range is inclusive of the start and end values.

export default function isIntegerInRange(
    value: number,
    start: number,
    end: number
): boolean;

isIntegerInRangeFn

Curried variant of isIntegerInRange.

Takes a range specified as a start and end value, and returns a function that tests if a specified value is within the range.

The range is inclusive of the start and end values.

export function isIntegerInRangeFn(
    start: number,
    end: number
): (value: number) => boolean;

See also

About

Tests if a value is an integer in a specified range

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.