corrigindo cortes de samples no download de projetos do mmpCreator
Deploy / Deploy (push) Successful in 1m56s Details

This commit is contained in:
JotaChina 2025-12-28 10:12:02 -03:00
parent d3a93c7278
commit 0afdf90c48
1 changed files with 0 additions and 6 deletions

View File

@ -1061,12 +1061,6 @@ function _sanitizeFileName(name) {
.slice(0, 80) || "clip"; .slice(0, 80) || "clip";
} }
function _clamp(n, a, b) {
const x = Number(n);
if (!Number.isFinite(x)) return a;
return Math.max(a, Math.min(b, x));
}
async function _fetchArrayBufferCached(url) { async function _fetchArrayBufferCached(url) {
if (__exportCache.rawBySrc.has(url)) return __exportCache.rawBySrc.get(url); if (__exportCache.rawBySrc.has(url)) return __exportCache.rawBySrc.get(url);
const res = await fetch(url); const res = await fetch(url);