- 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.
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
var concatMap = require('../');
|
|
var xs = [ 1, 2, 3, 4, 5, 6 ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
|
|
});
|
|
console.dir(ys);
|