UNPKG

is-two

Version:

This is an efficient package help you determine if a number is two or not!

18 lines (12 loc) 260 B
# Is Two This is an efficient package help you determine if a number is two or not! ## Install ```bash npm install --save is-two ``` ## Usage ```typescript import { isTwo } from "is-two"; console.log(isTwo(1)); // false console.log(isTwo(2)); // true ```