[🏠 Inicio](../README.md)

## tableExists

### Description:

The tableExists method checks if a specified table exists in the database.

### Usage:

````javascript
const db = new ArletDb('path/to/database', 'myDatabase');
db.tableExists('users')
  .then(exists => console.log('Table exists:', exists))
  .catch(err => console.error('Error:', err));
````