UNPKG

@prishelets/utils

Version:

A modern utility library for strings, numbers, and general data types — fully typed, tested, and built for Node.js and TypeScript.

7 lines (6 loc) 157 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isEven = isEven; function isEven(value) { return value % 2 === 0; }