1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
const _i = function() { function a(...d) { return d.join(" "); } return { a }; }(); const _j = function() { function a(...d) { return d.join("/"); } return { a }; }(); const k = globalThis.value ? _i : _j; const { a , } = k; export { a };