Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
@formatjs
/
ecma402-abstract
/
Filename :
DefaultNumberOption.js
back
Copy
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefaultNumberOption = void 0; function DefaultNumberOption(val, min, max, fallback) { if (val !== undefined) { val = Number(val); if (isNaN(val) || val < min || val > max) { throw new RangeError("".concat(val, " is outside of range [").concat(min, ", ").concat(max, "]")); } return Math.floor(val); } return fallback; } exports.DefaultNumberOption = DefaultNumberOption;