Sha256: 3ee2f56bf015f0e4c3870186c4e6c6d79e62236e2d3b5c71d21a7f0839f3f662
Contents?: true
Size: 356 Bytes
Versions: 23
Compression:
Stored size: 356 Bytes
Contents
/** * @typedef {Object} drawRow~border * @property {string} bodyLeft * @property {string} bodyRight * @property {string} bodyJoin */ /** * @param {number[]} columns * @param {drawRow~border} border * @returns {string} */ export default (columns, border) => { return border.bodyLeft + columns.join(border.bodyJoin) + border.bodyRight + '\n'; };
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
trusty-cms-4.1.7 | node_modules/table/dist/drawRow.js.flow |
trusty-cms-4.1.6 | node_modules/table/dist/drawRow.js.flow |
trusty-cms-4.1.5 | node_modules/table/dist/drawRow.js.flow |