aboutsummaryrefslogtreecommitdiff
path: root/node_modules/table/dist/wrapString.js
diff options
context:
space:
mode:
authorruki <waruqi@gmail.com>2018-11-08 00:38:48 +0800
committerruki <waruqi@gmail.com>2018-11-07 21:53:09 +0800
commit26105034da4fcce7ac883c899d781f016559310d (patch)
treec459a5dc4e3aa0972d9919033ece511ce76dd129 /node_modules/table/dist/wrapString.js
parent2c77f00f1a7ecb6c8192f9c16d3b2001b254a107 (diff)
downloadxmake-docs-26105034da4fcce7ac883c899d781f016559310d.tar.gz
xmake-docs-26105034da4fcce7ac883c899d781f016559310d.zip
switch to vuepress
Diffstat (limited to 'node_modules/table/dist/wrapString.js')
-rw-r--r--node_modules/table/dist/wrapString.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/node_modules/table/dist/wrapString.js b/node_modules/table/dist/wrapString.js
new file mode 100644
index 00000000..eae8ea05
--- /dev/null
+++ b/node_modules/table/dist/wrapString.js
@@ -0,0 +1,42 @@
+'use strict';
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+
+var _sliceAnsi = require('slice-ansi');
+
+var _sliceAnsi2 = _interopRequireDefault(_sliceAnsi);
+
+var _stringWidth = require('string-width');
+
+var _stringWidth2 = _interopRequireDefault(_stringWidth);
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+/**
+ * Creates an array of strings split into groups the length of size.
+ * This function works with strings that contain ASCII characters.
+ *
+ * wrapText is different from would-be "chunk" implementation
+ * in that whitespace characters that occur on a chunk size limit are trimmed.
+ *
+ * @param {string} subject
+ * @param {number} size
+ * @returns {Array}
+ */
+exports.default = (subject, size) => {
+ let subjectSlice;
+
+ subjectSlice = subject;
+
+ const chunks = [];
+
+ do {
+ chunks.push((0, _sliceAnsi2.default)(subjectSlice, 0, size));
+
+ subjectSlice = (0, _sliceAnsi2.default)(subjectSlice, size).trim();
+ } while ((0, _stringWidth2.default)(subjectSlice));
+
+ return chunks;
+}; \ No newline at end of file