@mojir/lits 2.1.26 → 2.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/cli.js +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lits.iife.js +1 -1
- package/dist/lits.iife.js.map +1 -1
- package/dist/testFramework.esm.js +1 -1
- package/dist/testFramework.esm.js.map +1 -1
- package/dist/testFramework.js +1 -1
- package/dist/testFramework.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/cli.js
CHANGED
|
@@ -92,7 +92,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
92
92
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
93
93
|
};
|
|
94
94
|
|
|
95
|
-
var version = "2.1.
|
|
95
|
+
var version = "2.1.27";
|
|
96
96
|
|
|
97
97
|
function getCodeMarker(sourceCodeInfo) {
|
|
98
98
|
if (!sourceCodeInfo.position || !sourceCodeInfo.code)
|
|
@@ -11358,7 +11358,7 @@ function generateDocString(reference) {
|
|
|
11358
11358
|
.replace(/`(.+?)`/g, '$1')
|
|
11359
11359
|
.replace(/\$(\w+)/g, '$1')
|
|
11360
11360
|
.replace(/\*\*\*(.+)\*\*\*/g, '$1')
|
|
11361
|
-
.replace(
|
|
11361
|
+
.replace(/\*\*(.+)\*\*/g, '$1'), "\n\n Signature:\n ").concat(signature(reference).join('\n '), "\n\n Arguments:\n ").concat(argStrings(reference).join('\n '), "\n \n Examples:\n").concat(reference.examples.map(function (example) { return smartTrim(example, 4); }).join('\n\n')));
|
|
11362
11362
|
}
|
|
11363
11363
|
function signature(_a) {
|
|
11364
11364
|
var title = _a.title, variants = _a.variants, args = _a.args, returns = _a.returns, _isOperator = _a._isOperator;
|
package/dist/index.esm.js
CHANGED
|
@@ -11229,7 +11229,7 @@ function generateDocString(reference) {
|
|
|
11229
11229
|
.replace(/`(.+?)`/g, '$1')
|
|
11230
11230
|
.replace(/\$(\w+)/g, '$1')
|
|
11231
11231
|
.replace(/\*\*\*(.+)\*\*\*/g, '$1')
|
|
11232
|
-
.replace(
|
|
11232
|
+
.replace(/\*\*(.+)\*\*/g, '$1'), "\n\n Signature:\n ").concat(signature(reference).join('\n '), "\n\n Arguments:\n ").concat(argStrings(reference).join('\n '), "\n \n Examples:\n").concat(reference.examples.map(function (example) { return smartTrim(example, 4); }).join('\n\n')));
|
|
11233
11233
|
}
|
|
11234
11234
|
function signature(_a) {
|
|
11235
11235
|
var title = _a.title, variants = _a.variants, args = _a.args, returns = _a.returns, _isOperator = _a._isOperator;
|