Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prettydiff/5c112403756d87ddccb4be4497aecad7 to your computer and use it in GitHub Desktop.
Save prettydiff/5c112403756d87ddccb4be4497aecad7 to your computer and use it in GitHub Desktop.
```javascript
// before compile
import agent_hash from "./utilities/agent_hash.js";
import agent_management from "./utilities/agent_management.js";
import agent_status from "./utilities/agent_status.js";
import browser from "./utilities/browser.js";
(function browser_init():void {
// code here
}());
// after compile
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const agent_hash_js_1 = require("./utilities/agent_hash.js");
const agent_management_js_1 = require("./utilities/agent_management.js");
const agent_status_js_1 = require("./utilities/agent_status.js");
const browser_js_1 = require("./utilities/browser.js");
(function browser_init() {
// code here
}());
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment