source: node_modules/autolinker/dist/commonjs/index.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1"use strict";
2// Note: the following line is added by scripts/fix-common-js-output.ts to allow require('autolinker') to work correctly
3exports = module.exports = require('./autolinker').default; // redefine 'exports' object as the Autolinker class itself
4// WARNING: This file is modified a bit when it is compiled into index.js in
5// order to support nodejs interoperability with require('autolinker') directly.
6// This is done by the buildSrcFixCommonJsIndexTask() function in the gulpfile.
7// See that function for more details.
8Object.defineProperty(exports, "__esModule", { value: true });
9exports.Autolinker = void 0;
10var tslib_1 = require("tslib");
11var autolinker_1 = (0, tslib_1.__importDefault)(require("./autolinker"));
12exports.Autolinker = autolinker_1.default;
13exports.default = autolinker_1.default;
14(0, tslib_1.__exportStar)(require("./autolinker"), exports);
15(0, tslib_1.__exportStar)(require("./anchor-tag-builder"), exports);
16(0, tslib_1.__exportStar)(require("./html-tag"), exports);
17(0, tslib_1.__exportStar)(require("./match/index"), exports);
18(0, tslib_1.__exportStar)(require("./matcher/index"), exports);
19//# sourceMappingURL=index.js.map
Note: See TracBrowser for help on using the repository browser.