react-scripts
Version:
Configuration and scripts for Create React App.
25 lines (20 loc) • 519 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* @typedef {Object} drawRow~border
* @property {string} bodyLeft
* @property {string} bodyRight
* @property {string} bodyJoin
*/
/**
* @param {number[]} columns
* @param {drawRow~border} border
* @return {string}
*/
exports.default = function (columns, border) {
return border.bodyLeft + columns.join(border.bodyJoin) + border.bodyRight + '\n';
};
module.exports = exports['default'];
//# sourceMappingURL=drawRow.js.map
;