Sha256: 468b5665b52197369ad629b2260d85944f3002e0d6e469c095b4226894428de5

Contents?: true

Size: 1.2 KB

Versions: 46

Compression:

Stored size: 1.2 KB

Contents

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});

var _lodash = require('lodash');

var _lodash2 = _interopRequireDefault(_lodash);

var _stringWidth = require('string-width');

var _stringWidth2 = _interopRequireDefault(_stringWidth);

var _wrapWord = require('./wrapWord');

var _wrapWord2 = _interopRequireDefault(_wrapWord);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

/**
 * @param {string} value
 * @param {number} columnWidth
 * @param {boolean} useWrapWord
 * @returns {number}
 */
exports.default = function (value, columnWidth) {
  let useWrapWord = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;

  if (!_lodash2.default.isString(value)) {
    throw new Error('Value must be a string.');
  }

  if (!_lodash2.default.isInteger(columnWidth)) {
    throw new Error('Column width must be an integer.');
  }

  if (columnWidth < 1) {
    throw new Error('Column width must be greater than 0.');
  }

  if (useWrapWord) {
    return (0, _wrapWord2.default)(value, columnWidth).length;
  }

  return _lodash2.default.ceil((0, _stringWidth2.default)(value) / columnWidth);
};

module.exports = exports['default'];

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.21.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.20.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.19.1 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.19.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.18.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.17.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.16.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.15.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.14.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.13.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.12.2 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.12.1 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.12.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.11.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.10.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.9.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.8.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.7.0 node_modules/table/dist/calculateCellHeight.js
govuk_publishing_components-17.6.1 node_modules/table/dist/calculateCellHeight.js