1/** 2 * @license 3 * Copyright 2023 The Emscripten Authors 4 * SPDX-License-Identifier: MIT 5 */ 6 7addToLibrary({ 8 $OPFS__deps: ['wasmfs_create_opfs_backend'], 9 $OPFS: { 10 createBackend(opts) { 11 return _wasmfs_create_opfs_backend(); 12 } 13 }, 14}); 15 16if (!WASMFS) { 17 error("using -lopfs.js requires using WasmFS (-sWASMFS)"); 18} 19 20