mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
Update ESLint and configuration to version 4.0.0. PR-URL: https://github.com/nodejs/node/pull/13645 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
26 lines
680 B
JavaScript
26 lines
680 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _lodash = require('lodash');
|
|
|
|
var _lodash2 = _interopRequireDefault(_lodash);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
/**
|
|
* @param {table~row[]} rows
|
|
* @param {Object} config
|
|
* @returns {table~row[]}
|
|
*/
|
|
exports.default = (rows, config) => {
|
|
return _lodash2.default.map(rows, cells => {
|
|
return _lodash2.default.map(cells, (value, index1) => {
|
|
const column = config.columns[index1];
|
|
|
|
return _lodash2.default.repeat(' ', column.paddingLeft) + value + _lodash2.default.repeat(' ', column.paddingRight);
|
|
});
|
|
});
|
|
}; |