UNPKG

cust-math_2

Version:

A custom math utility for basic operations

9 lines (8 loc) 252 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.custMath = void 0; exports.custMath = { add: (num1, num2) => num1 + num2, subtract: (num1, num2) => num1 - num2, multiply: (num1, num2) => num1 * num2, };