Files
Simon James b54a3139c7 Initial commit: Qortal Web Builder monorepo.
Includes QWB, Qortal Web, and Q-Shops Q-Apps with shared packages and build scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-09 12:17:29 +00:00

9 lines
308 B
JavaScript

import { buildZipStoreRaw } from './zipStoreEntry.js';
window.buildZipStore = function (files) {
if (!files || typeof files !== 'object') {
throw new Error('buildZipStore: expected files object');
}
return buildZipStoreRaw(/** @type {Record<string, string|ArrayBuffer|Uint8Array>} */ (files));
};