Sha256: 05ef368174537ef98a133d23b4db63f8b9ee871b22fdfaf919af97307512e19b
Contents?: true
Size: 439 Bytes
Versions: 43
Compression:
Stored size: 439 Bytes
Contents
'use strict'; 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 * @returns {string} */ exports.default = (columns, border) => { return border.bodyLeft + columns.join(border.bodyJoin) + border.bodyRight + '\n'; };
Version data entries
43 entries across 43 versions & 1 rubygems