- 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.
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (coll) {
|
|
return coll[Symbol.iterator] && coll[Symbol.iterator]();
|
|
};
|
|
|
|
module.exports = exports.default; |