b54a3139c7
Includes QWB, Qortal Web, and Q-Shops Q-Apps with shared packages and build scripts. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
308 B
JavaScript
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));
|
|
};
|