1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4  value: true
5});
6exports.withDangerousMod = void 0;
7function _withMod() {
8  const data = require("./withMod");
9  _withMod = function () {
10    return data;
11  };
12  return data;
13}
14/**
15 * Mods that don't modify any data, all unresolved functionality is performed inside a dangerous mod.
16 * All dangerous mods run first before other mods.
17 *
18 * @param config
19 * @param platform
20 * @param action
21 */
22const withDangerousMod = (config, [platform, action]) => {
23  return (0, _withMod().withMod)(config, {
24    platform,
25    mod: 'dangerous',
26    action
27  });
28};
29exports.withDangerousMod = withDangerousMod;
30//# sourceMappingURL=withDangerousMod.js.map