@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
|
@@ -11351,7 +11351,7 @@ function generateDocString(reference) {
|
|
|
11351
11351
|
.replace(/`(.+?)`/g, '$1')
|
|
11352
11352
|
.replace(/\$(\w+)/g, '$1')
|
|
11353
11353
|
.replace(/\*\*\*(.+)\*\*\*/g, '$1')
|
|
11354
|
-
.replace(
|
|
11354
|
+
.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')));
|
|
11355
11355
|
}
|
|
11356
11356
|
function signature(_a) {
|
|
11357
11357
|
var title = _a.title, variants = _a.variants, args = _a.args, returns = _a.returns, _isOperator = _a._isOperator;
|