- 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.
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (...args) {
|
|
return function (...ignoredArgs /*, callback*/) {
|
|
var callback = ignoredArgs.pop();
|
|
return callback(null, ...args);
|
|
};
|
|
};
|
|
|
|
module.exports = exports.default; |