feat: add sqlstring and supports-color modules
- Introduced sqlstring module for SQL escape and formatting. - Added supports-color module to detect terminal color support. - Created dashboard and login views with Bootstrap styling. - Implemented user schema in SQL with mock data for testing.
This commit is contained in:
12
backend/node_modules/mysql2/lib/pool.js
generated
vendored
Normal file
12
backend/node_modules/mysql2/lib/pool.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
|
||||
const BasePool = require('./base/pool.js');
|
||||
|
||||
class Pool extends BasePool {
|
||||
promise(promiseImpl) {
|
||||
const PromisePool = require('./promise/pool.js');
|
||||
return new PromisePool(this, promiseImpl);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Pool;
|
Reference in New Issue
Block a user