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_connection.js
generated
vendored
Normal file
12
backend/node_modules/mysql2/lib/pool_connection.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
|
||||
const BasePoolConnection = require('./base/pool_connection.js');
|
||||
|
||||
class PoolConnection extends BasePoolConnection {
|
||||
promise(promiseImpl) {
|
||||
const PromisePoolConnection = require('./promise/pool_connection.js');
|
||||
return new PromisePoolConnection(this, promiseImpl);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PoolConnection;
|
Reference in New Issue
Block a user