UNPKG

rock-mod

Version:

Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.

7 lines (6 loc) 196 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MathClamp = MathClamp; function MathClamp(value, min, max) { return Math.max(min, Math.min(max, value)); }