UNPKG

node-irr

Version:

A Node.js package that provides an easy and customizable way to calculate internal rate of return.

8 lines 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isValidRoot = void 0; function isValidRoot(value) { return !isNaN(value) && isFinite(value) && value >= 0; } exports.isValidRoot = isValidRoot; //# sourceMappingURL=is-valid-root.js.map