Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
import { max as mathMax, min as mathMin } from "./math.js"; export function within(min, value, max) { return mathMax(min, mathMin(value, max)); } export function withinMaxClamp(min, value, max) { var v = within(min, value, max); return v > max ? max : v; }