pareto-host-nodejs 0.2.51 → 0.2.52
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/commands/execute/any_command_executable.d.ts +7 -0
- package/dist/commands/execute/any_command_executable.js +81 -0
- package/dist/commands/execute/any_smelly_command_executable.d.ts +7 -0
- package/dist/commands/execute/any_smelly_command_executable.js +89 -0
- package/dist/commands/fs/sandboxed/chmod.d.ts +5 -0
- package/dist/commands/fs/sandboxed/chmod.js +51 -0
- package/dist/commands/fs/sandboxed/copy.d.ts +6 -0
- package/dist/commands/fs/sandboxed/copy.js +54 -0
- package/dist/commands/fs/sandboxed/make_directory.d.ts +5 -0
- package/dist/commands/fs/sandboxed/make_directory.js +51 -0
- package/dist/commands/fs/sandboxed/remove.d.ts +1 -0
- package/dist/commands/fs/sandboxed/remove.js +21 -0
- package/dist/commands/fs/sandboxed/write_file.d.ts +5 -0
- package/dist/commands/fs/sandboxed/write_file.js +51 -0
- package/dist/commands/fs/unrestricted/chmod.d.ts +2 -0
- package/dist/commands/fs/unrestricted/chmod.js +107 -0
- package/dist/commands/fs/unrestricted/copy.d.ts +2 -0
- package/dist/commands/fs/unrestricted/copy.js +90 -0
- package/dist/commands/fs/unrestricted/make_directory.d.ts +2 -0
- package/dist/commands/fs/unrestricted/make_directory.js +97 -0
- package/dist/commands/fs/unrestricted/remove.d.ts +2 -0
- package/dist/commands/fs/unrestricted/remove.js +84 -0
- package/dist/commands/fs/unrestricted/write_file.d.ts +2 -0
- package/dist/commands/fs/unrestricted/write_file.js +85 -0
- package/dist/commands/stream/log.d.ts +2 -0
- package/dist/commands/stream/log.js +56 -0
- package/dist/commands/stream/log_error.d.ts +2 -0
- package/dist/commands/stream/log_error.js +56 -0
- package/dist/commands/stream/write_to_stderr.d.ts +2 -0
- package/dist/commands/stream/write_to_stderr.js +17 -0
- package/dist/commands/stream/write_to_stdout.d.ts +2 -0
- package/dist/commands/stream/write_to_stdout.js +17 -0
- package/dist/execute_unrestricted/commands/command_executable.d.ts +7 -0
- package/dist/execute_unrestricted/commands/command_executable.js +81 -0
- package/dist/execute_unrestricted/commands/smelly_command_executable.d.ts +7 -0
- package/dist/execute_unrestricted/commands/smelly_command_executable.js +89 -0
- package/dist/execute_unrestricted/queries/query_executable.d.ts +7 -0
- package/dist/execute_unrestricted/queries/query_executable.js +94 -0
- package/dist/file_system sandboxed/commands/chmod.d.ts +5 -0
- package/dist/file_system sandboxed/commands/chmod.js +51 -0
- package/dist/file_system sandboxed/commands/copy.d.ts +6 -0
- package/dist/file_system sandboxed/commands/copy.js +54 -0
- package/dist/file_system sandboxed/commands/make_directory.d.ts +5 -0
- package/dist/file_system sandboxed/commands/make_directory.js +51 -0
- package/dist/file_system sandboxed/commands/remove.d.ts +1 -0
- package/dist/file_system sandboxed/commands/remove.js +21 -0
- package/dist/file_system sandboxed/commands/write_file.d.ts +5 -0
- package/dist/file_system sandboxed/commands/write_file.js +51 -0
- package/dist/file_system unrestricted/commands/chmod.d.ts +2 -0
- package/dist/file_system unrestricted/commands/chmod.js +107 -0
- package/dist/file_system unrestricted/commands/copy.d.ts +2 -0
- package/dist/file_system unrestricted/commands/copy.js +90 -0
- package/dist/file_system unrestricted/commands/make_directory.d.ts +2 -0
- package/dist/file_system unrestricted/commands/make_directory.js +97 -0
- package/dist/file_system unrestricted/commands/remove.d.ts +2 -0
- package/dist/file_system unrestricted/commands/remove.js +84 -0
- package/dist/file_system unrestricted/commands/write_file.d.ts +2 -0
- package/dist/file_system unrestricted/commands/write_file.js +85 -0
- package/dist/file_system unrestricted/queries/read_directory.d.ts +2 -0
- package/dist/file_system unrestricted/queries/read_directory.js +84 -0
- package/dist/file_system unrestricted/queries/read_file.d.ts +2 -0
- package/dist/file_system unrestricted/queries/read_file.js +79 -0
- package/dist/file_system unrestricted/queries/stat.d.ts +2 -0
- package/dist/file_system unrestricted/queries/stat.js +66 -0
- package/dist/file_system unrestricted/queries/stat_possible_node.d.ts +2 -0
- package/dist/file_system unrestricted/queries/stat_possible_node.js +70 -0
- package/dist/file_system_sandboxed/commands/chmod.d.ts +5 -0
- package/dist/file_system_sandboxed/commands/chmod.js +47 -0
- package/dist/file_system_sandboxed/commands/copy.d.ts +6 -0
- package/dist/file_system_sandboxed/commands/copy.js +50 -0
- package/dist/file_system_sandboxed/commands/make_directory.d.ts +5 -0
- package/dist/file_system_sandboxed/commands/make_directory.js +47 -0
- package/dist/file_system_sandboxed/commands/remove.d.ts +1 -0
- package/dist/file_system_sandboxed/commands/remove.js +21 -0
- package/dist/file_system_sandboxed/commands/write_file.d.ts +5 -0
- package/dist/file_system_sandboxed/commands/write_file.js +51 -0
- package/dist/file_system_sandboxed/queries/read_directory.d.ts +2 -0
- package/dist/file_system_sandboxed/queries/read_directory.js +84 -0
- package/dist/file_system_sandboxed/queries/read_file.d.ts +2 -0
- package/dist/file_system_sandboxed/queries/read_file.js +79 -0
- package/dist/file_system_sandboxed/queries/stat.d.ts +2 -0
- package/dist/file_system_sandboxed/queries/stat.js +66 -0
- package/dist/file_system_sandboxed/queries/stat_possible_node.d.ts +2 -0
- package/dist/file_system_sandboxed/queries/stat_possible_node.js +70 -0
- package/dist/file_system_unrestricted/commands/chmod.d.ts +2 -0
- package/dist/file_system_unrestricted/commands/chmod.js +107 -0
- package/dist/file_system_unrestricted/commands/copy.d.ts +2 -0
- package/dist/file_system_unrestricted/commands/copy.js +90 -0
- package/dist/file_system_unrestricted/commands/make_directory.d.ts +2 -0
- package/dist/file_system_unrestricted/commands/make_directory.js +97 -0
- package/dist/file_system_unrestricted/commands/remove.d.ts +2 -0
- package/dist/file_system_unrestricted/commands/remove.js +84 -0
- package/dist/file_system_unrestricted/commands/write_file.d.ts +2 -0
- package/dist/file_system_unrestricted/commands/write_file.js +85 -0
- package/dist/file_system_unrestricted/queries/read_directory.d.ts +2 -0
- package/dist/file_system_unrestricted/queries/read_directory.js +84 -0
- package/dist/file_system_unrestricted/queries/read_file.d.ts +2 -0
- package/dist/file_system_unrestricted/queries/read_file.js +79 -0
- package/dist/file_system_unrestricted/queries/stat.d.ts +2 -0
- package/dist/file_system_unrestricted/queries/stat.js +66 -0
- package/dist/file_system_unrestricted/queries/stat_possible_node.d.ts +2 -0
- package/dist/file_system_unrestricted/queries/stat_possible_node.js +70 -0
- package/dist/index.js +66 -37
- package/dist/queries/execute/any_query_executable.d.ts +7 -0
- package/dist/queries/execute/any_query_executable.js +94 -0
- package/dist/queries/execute_any_query_executable.js +2 -2
- package/dist/queries/fs/unrestricted/read_directory.d.ts +2 -0
- package/dist/queries/fs/unrestricted/read_directory.js +84 -0
- package/dist/queries/fs/unrestricted/read_file.d.ts +2 -0
- package/dist/queries/fs/unrestricted/read_file.js +79 -0
- package/dist/queries/fs/unrestricted/stat.d.ts +2 -0
- package/dist/queries/fs/unrestricted/stat.js +66 -0
- package/dist/queries/fs/unrestricted/stat_possible_node.d.ts +2 -0
- package/dist/queries/fs/unrestricted/stat_possible_node.js +70 -0
- package/dist/queries/read_directory.js +3 -3
- package/dist/queries/read_file.js +2 -2
- package/dist/queries/stat.js +2 -2
- package/dist/queries/stat_possible_node.js +2 -2
- package/dist/queries/stream/get_instream_data.d.ts +2 -0
- package/dist/queries/stream/get_instream_data.js +23 -0
- package/dist/signatures.d.ts +32 -20
- package/dist/stream/commands/log.d.ts +2 -0
- package/dist/stream/commands/log.js +56 -0
- package/dist/stream/commands/log_error.d.ts +2 -0
- package/dist/stream/commands/log_error.js +56 -0
- package/dist/stream/commands/write_to_stderr.d.ts +2 -0
- package/dist/stream/commands/write_to_stderr.js +17 -0
- package/dist/stream/commands/write_to_stdout.d.ts +2 -0
- package/dist/stream/commands/write_to_stdout.js +17 -0
- package/dist/stream/queries/get_instream_data.d.ts +2 -0
- package/dist/stream/queries/get_instream_data.js +23 -0
- package/dist/temp_create_command.d.ts +2 -0
- package/dist/temp_create_command.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.$$ = void 0;
|
|
40
|
+
const _p_text_from_list_1 = __importDefault(require("pareto-core/dist/_p_text_from_list"));
|
|
41
|
+
const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
|
|
42
|
+
const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
|
|
43
|
+
//dependencies
|
|
44
|
+
const t_fp_to_list_of_characters = __importStar(require("pareto-fountain-pen/dist/implementation/manual/transformers/prose/list_of_characters"));
|
|
45
|
+
exports.$$ = (0, command_1.default)(($p) => {
|
|
46
|
+
return (0, command_promise_1.default)({
|
|
47
|
+
'execute': (on_success) => {
|
|
48
|
+
process.stderr.write((0, _p_text_from_list_1.default)(t_fp_to_list_of_characters.Paragraph($p.message, {
|
|
49
|
+
'indentation': ' ',
|
|
50
|
+
'newline': '\n',
|
|
51
|
+
}), ($) => $));
|
|
52
|
+
on_success();
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nX2Vycm9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy9sb2dfZXJyb3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0EsMkZBQWtFO0FBQ2xFLHlGQUFrRTtBQUNsRSx5R0FBa0Y7QUFLbEYsY0FBYztBQUNkLGlKQUFrSTtBQUVySCxRQUFBLEVBQUUsR0FBd0MsSUFBQSxpQkFBUyxFQUFDLENBQzdELEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUNoQixJQUFBLDJCQUFpQixFQUNiLDBCQUEwQixDQUFDLFNBQVMsQ0FDaEMsRUFBRSxDQUFDLE9BQU8sRUFDVjtnQkFDSSxhQUFhLEVBQUUsTUFBTTtnQkFDckIsU0FBUyxFQUFFLElBQUk7YUFDbEIsQ0FDSixFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQ1gsQ0FDSixDQUFBO1lBQ0QsVUFBVSxFQUFFLENBQUE7UUFDaEIsQ0FBQztLQUNKLENBQUMsQ0FBQTtBQUNOLENBQUMsQ0FBQyxDQUFBIn0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.$$ = void 0;
|
|
7
|
+
const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
|
|
8
|
+
const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
|
|
9
|
+
exports.$$ = (0, command_1.default)(($p) => {
|
|
10
|
+
return (0, command_promise_1.default)({
|
|
11
|
+
'execute': (on_success) => {
|
|
12
|
+
process.stderr.write($p);
|
|
13
|
+
on_success();
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fc3RkZXJyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy93cml0ZV90b19zdGRlcnIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEseUZBQWtFO0FBQ2xFLHlHQUFrRjtBQUtyRSxRQUFBLEVBQUUsR0FBOEMsSUFBQSxpQkFBUyxFQUFFLENBQ3BFLEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFBO1lBQ3hCLFVBQVUsRUFBRSxDQUFBO1FBQ2hCLENBQUM7S0FDSixDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.$$ = void 0;
|
|
7
|
+
const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
|
|
8
|
+
const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
|
|
9
|
+
exports.$$ = (0, command_1.default)(($p) => {
|
|
10
|
+
return (0, command_promise_1.default)({
|
|
11
|
+
'execute': (on_success) => {
|
|
12
|
+
process.stdout.write($p);
|
|
13
|
+
on_success();
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fc3Rkb3V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy93cml0ZV90b19zdGRvdXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEseUZBQWtFO0FBQ2xFLHlHQUFrRjtBQUtyRSxRQUFBLEVBQUUsR0FBOEMsSUFBQSxpQkFBUyxFQUFDLENBQ25FLEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFBO1lBQ3hCLFVBQVUsRUFBRSxDQUFBO1FBQ2hCLENBQUM7S0FDSixDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.$$ = void 0;
|
|
7
|
+
const query_1 = __importDefault(require("pareto-core/dist/__internals/async/query"));
|
|
8
|
+
const __query_result_1 = __importDefault(require("pareto-core/dist/__internals/async/__query_result"));
|
|
9
|
+
exports.$$ = (0, query_1.default)(() => {
|
|
10
|
+
return (0, __query_result_1.default)((on_value) => {
|
|
11
|
+
const stdin = process.stdin;
|
|
12
|
+
let data = '';
|
|
13
|
+
stdin.setEncoding('utf8');
|
|
14
|
+
stdin.on('data', (chunk) => {
|
|
15
|
+
data += chunk;
|
|
16
|
+
});
|
|
17
|
+
stdin.on('end', () => {
|
|
18
|
+
on_value(data);
|
|
19
|
+
});
|
|
20
|
+
stdin.resume();
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0X2luc3RyZWFtX2RhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvc3RyZWFtL3F1ZXJpZXMvZ2V0X2luc3RyZWFtX2RhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEscUZBQThEO0FBQzlELHVHQUE4RTtBQUtqRSxRQUFBLEVBQUUsR0FBK0MsSUFBQSxlQUFPLEVBQUMsR0FDcEUsRUFBRTtJQUNBLE9BQU8sSUFBQSx3QkFBYyxFQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7UUFFL0IsTUFBTSxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQztRQUM1QixJQUFJLElBQUksR0FBRyxFQUFFLENBQUM7UUFDZCxLQUFLLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRTFCLEtBQUssQ0FBQyxFQUFFLENBQUMsTUFBTSxFQUFFLENBQUMsS0FBYSxFQUFFLEVBQUU7WUFDL0IsSUFBSSxJQUFJLEtBQUssQ0FBQztRQUNsQixDQUFDLENBQUMsQ0FBQztRQUVILEtBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxFQUFFLEdBQUcsRUFBRTtZQUNqQixRQUFRLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFFSCxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDbkIsQ0FBQyxDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import * as _pi from 'pareto-core/dist/interface';
|
|
2
|
+
export declare const __create_command: <Error, Command_Parameters, Creator_Parameters>(command_creator: (parameters: Creator_Parameters) => ($p: Command_Parameters) => _pi.Command_Promise<Error>) => ($x: Creator_Parameters) => _pi.Command<Error, Command_Parameters>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.__create_command = void 0;
|
|
7
|
+
const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
|
|
8
|
+
const __create_command = (command_creator) => {
|
|
9
|
+
return ($x) => (0, command_1.default)(command_creator($x));
|
|
10
|
+
};
|
|
11
|
+
exports.__create_command = __create_command;
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcF9jcmVhdGVfY29tbWFuZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy90ZW1wX2NyZWF0ZV9jb21tYW5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUNBLHlGQUFrRTtBQUczRCxNQUFNLGdCQUFnQixHQUFHLENBSzVCLGVBQTJHLEVBQ3pDLEVBQUU7SUFDcEUsT0FBTyxDQUFDLEVBQXNCLEVBQUUsRUFBRSxDQUFDLElBQUEsaUJBQVMsRUFDeEMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUN0QixDQUFBO0FBQ0wsQ0FBQyxDQUFBO0FBVlksUUFBQSxnQkFBZ0Isb0JBVTVCIn0=
|