go.js 205 B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.go = void 0;
  4. /** Executes code concurrently. */
  5. const go = (code) => {
  6. code().catch(() => { });
  7. };
  8. exports.go = go;