Guest User

Untitled

a guest
Oct 23rd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
  3. typeof define === 'function' && define.amd ? define(['exports'], factory) :
  4. (factory((global.tsIntegrationTest = {})));
  5. }(this, (function (exports) { 'use strict';
  6.  
  7. function tshello() {
  8. return 'world from typescript';
  9. }
  10.  
  11. exports.tshello = tshello;
  12.  
  13. Object.defineProperty(exports, '__esModule', { value: true });
  14.  
  15. })));
  16. //# sourceMappingURL=ts-integration-test.umd.js.map
Add Comment
Please, Sign In to add comment