/* WASM implementation of "api.h" interface to be used in web contexts */ export const platformDependentPersistInt = (n) => localStorage.setItem("persisted", n.toString()); export const platformDependentRetrieveInt = () => parseInt(localStorage.getItem("persisted"));