export async function clear(dbName: string, tableName: string) {
  window.sessionStorage.removeItem(`${dbName}.${tableName}`);
  return true;
}