Sprite

SpriteDatabase.exists

Check to see if this database exists on the server (i.e. the database was created).

Example

async function databaseExistsExample() {
  try {
    const exists = await db.exists();
    console.log(exists);
    // true
  } catch (error) {
    console.error(error);
    // handle error conditions
  }
}

databaseExistsExample();