(store, zClass, zKey)
| 16674 | zKey may not. |
| 16675 | */ |
| 16676 | const zKeyForStorage = (store, zClass, zKey)=>{ |
| 16677 | //debug("zKeyForStorage(",store, wasm.cstrToJs(zClass), wasm.cstrToJs(zKey)); |
| 16678 | return (zClass && store.keyPrefix) ? kvvfsMakeKey(zClass, zKey) : zKey; |
| 16679 | }; |
| 16680 | |
| 16681 | const jsKeyForStorage = (store,zClass,zKey)=> |
| 16682 | wasm.cstrToJs(zKeyForStorage(store, zClass, zKey)); |