1
2
3
4
5
6
7
8
9
10
|
// JavaScript
/*jslint esversion: 6*/
/*global require,exports*/
"use strict";
var text = {
getParagraph: function* (sText, sSepParagraph = "\n") {
// generator: returns paragraphs of text
|
>
>
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
// JavaScript
/* jshint esversion:6, -W097 */
/* jslint esversion:6 */
/* global require, exports, console */
"use strict";
var text = {
getParagraph: function* (sText, sSepParagraph = "\n") {
// generator: returns paragraphs of text
|
55
56
57
58
59
60
61
62
63
64
65
66
|
console.error(e);
return "\n# Error. Data: " + oErr.toString();
}
}
};
if (typeof(exports) !== 'undefined') {
exports.getParagraph = text.getParagraph;
exports.wrap = text.wrap;
exports.getReadableError = text.getReadableError;
}
|
|
|
57
58
59
60
61
62
63
64
65
66
67
68
|
console.error(e);
return "\n# Error. Data: " + oErr.toString();
}
}
};
if (typeof exports !== 'undefined') {
exports.getParagraph = text.getParagraph;
exports.wrap = text.wrap;
exports.getReadableError = text.getReadableError;
}
|