Skip to content

Commit 9b01107

Browse files
authored
Merge pull request #373 from gregjacobs/fix-tests
Fixing tests
2 parents 596348e + 329b16e commit 9b01107

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+360
-308
lines changed

.github/main.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
1-
name: CI
2-
3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
8-
9-
workflow_dispatch:
10-
1+
name: run-tests
2+
on: [push]
113
jobs:
124
build:
135
runs-on: ubuntu-latest
14-
156
steps:
167
- uses: actions/checkout@v2
17-
18-
- name: Yarn install
8+
- uses: actions/setup-node@v2
9+
with:
10+
node-version: '14'
11+
- name: yarn install
1912
run: yarn
20-
21-
- name: Yarn test
22-
run: yarn test
13+
- name: yarn test
14+
run: yarn test

dist/Autolinker.js

Lines changed: 59 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Autolinker.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Autolinker.min.js

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Autolinker.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Autolinker v3.14.3 API Docs</title>
4+
<title>Autolinker v3.15.0 API Docs</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
66
<meta http-equiv="X-UA-Compatible" content="chrome=1">
77
<meta name="fragment" content="!">
@@ -22,9 +22,9 @@
2222
</head>
2323
<body id="ext-body">
2424

25-
<div id="loading"><span class="title">Autolinker v3.14.3 API Docs</span><span class="logo"></span></div>
25+
<div id="loading"><span class="title">Autolinker v3.15.0 API Docs</span><span class="logo"></span></div>
2626

27-
<div id="header-content">Autolinker v3.14.3 API Docs</div>
27+
<div id="header-content">Autolinker v3.15.0 API Docs</div>
2828

2929
<div id='categories-content' style='display:none'>
3030
<div class='section'>
@@ -88,7 +88,7 @@ <h3>Others...</h3>
8888

8989

9090

91-
<div id='footer-content' style='display: none'>Generated on Sun 14 Mar 2021 16:46:03 by <a href='https://github.com/senchalabs/jsduck'>JSDuck</a> 5.3.4.</div>
91+
<div id='footer-content' style='display: none'>Generated on Sun 27 Feb 2022 11:28:05 by <a href='https://github.com/senchalabs/jsduck'>JSDuck</a> 5.3.4.</div>
9292

9393

9494

docs/api/output/Autolinker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/output/Autolinker.matcher.Mention.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/output/global.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/source/Autolinker.html

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -427,13 +427,13 @@
427427
this.sanitizeHtml = cfg.sanitizeHtml || false;
428428
// Validate the value of the `mention` cfg
429429
var mention = this.mention;
430-
if (mention !== false &amp;&amp; mention !== &#39;twitter&#39; &amp;&amp; mention !== &#39;instagram&#39; &amp;&amp; mention !== &#39;soundcloud&#39;) {
431-
throw new Error(&quot;invalid `mention` cfg - see docs&quot;);
430+
if (mention !== false &amp;&amp; [&#39;twitter&#39;, &#39;instagram&#39;, &#39;soundcloud&#39;, &#39;tiktok&#39;].indexOf(mention) === -1) {
431+
throw new Error(&quot;invalid `mention` cfg &#39;&quot;.concat(mention, &quot;&#39; - see docs&quot;));
432432
}
433433
// Validate the value of the `hashtag` cfg
434434
var hashtag = this.hashtag;
435-
if (hashtag !== false &amp;&amp; hashtag !== &#39;twitter&#39; &amp;&amp; hashtag !== &#39;facebook&#39; &amp;&amp; hashtag !== &#39;instagram&#39;) {
436-
throw new Error(&quot;invalid `hashtag` cfg - see docs&quot;);
435+
if (hashtag !== false &amp;&amp; [&#39;twitter&#39;, &#39;facebook&#39;, &#39;instagram&#39;, &#39;tiktok&#39;].indexOf(hashtag) === -1) {
436+
throw new Error(&quot;invalid `hashtag` cfg &#39;&quot;.concat(hashtag, &quot;&#39; - see docs&quot;));
437437
}
438438
this.truncate = this.normalizeTruncateCfg(cfg.truncate);
439439
this.className = cfg.className || this.className;
@@ -565,7 +565,7 @@
565565
return { length: truncate, location: &#39;end&#39; };
566566
}
567567
else { // object, or undefined/null
568-
return utils_1.defaults(truncate || {}, {
568+
return (0, utils_1.defaults)(truncate || {}, {
569569
length: Number.POSITIVE_INFINITY,
570570
location: &#39;end&#39;
571571
});
@@ -608,7 +608,7 @@
608608
matches = [];
609609
// Find all matches within the `textOrHtml` (but not matches that are
610610
// already nested within &lt;a&gt;, &lt;style&gt; and &lt;script&gt; tags)
611-
parse_html_1.parseHtml(textOrHtml, {
611+
(0, parse_html_1.parseHtml)(textOrHtml, {
612612
onOpenTag: function (tagName) {
613613
if (skipTagNames.indexOf(tagName) &gt;= 0) {
614614
skipTagsStackCount++;
@@ -623,7 +623,7 @@
623623
// TODO: Handle HTML entities separately in parseHtml() and
624624
// don&#39;t emit them as &quot;text&quot; except for &amp;amp; entities
625625
var htmlCharacterEntitiesRegex = /(&amp;nbsp;|&amp;#160;|&amp;lt;|&amp;#60;|&amp;gt;|&amp;#62;|&amp;quot;|&amp;#34;|&amp;#39;)/gi;
626-
var textSplit = utils_1.splitAndCapture(text, htmlCharacterEntitiesRegex);
626+
var textSplit = (0, utils_1.splitAndCapture)(text, htmlCharacterEntitiesRegex);
627627
var currentOffset_1 = offset;
628628
textSplit.forEach(function (splitText, i) {
629629
// even number matches are text, odd numbers are html entities
@@ -668,7 +668,8 @@
668668
Autolinker.prototype.compactMatches = function (matches) {
669669
// First, the matches need to be sorted in order of offset
670670
matches.sort(function (a, b) { return a.getOffset() - b.getOffset(); });
671-
for (var i = 0; i &lt; matches.length - 1; i++) {
671+
var i = 0;
672+
while (i &lt; matches.length - 1) {
672673
var match = matches[i], offset = match.getOffset(), matchedTextLength = match.getMatchedText().length, endIdx = offset + matchedTextLength;
673674
if (i + 1 &lt; matches.length) {
674675
// Remove subsequent matches that equal offset with current match
@@ -680,8 +681,10 @@
680681
// Remove subsequent matches that overlap with the current match
681682
if (matches[i + 1].getOffset() &lt; endIdx) {
682683
matches.splice(i + 1, 1);
684+
continue;
683685
}
684686
}
687+
i++;
685688
}
686689
return matches;
687690
};
@@ -705,21 +708,21 @@
705708
*/
706709
Autolinker.prototype.removeUnwantedMatches = function (matches) {
707710
if (!this.hashtag)
708-
utils_1.remove(matches, function (match) { return match.getType() === &#39;hashtag&#39;; });
711+
(0, utils_1.remove)(matches, function (match) { return match.getType() === &#39;hashtag&#39;; });
709712
if (!this.email)
710-
utils_1.remove(matches, function (match) { return match.getType() === &#39;email&#39;; });
713+
(0, utils_1.remove)(matches, function (match) { return match.getType() === &#39;email&#39;; });
711714
if (!this.phone)
712-
utils_1.remove(matches, function (match) { return match.getType() === &#39;phone&#39;; });
715+
(0, utils_1.remove)(matches, function (match) { return match.getType() === &#39;phone&#39;; });
713716
if (!this.mention)
714-
utils_1.remove(matches, function (match) { return match.getType() === &#39;mention&#39;; });
717+
(0, utils_1.remove)(matches, function (match) { return match.getType() === &#39;mention&#39;; });
715718
if (!this.urls.schemeMatches) {
716-
utils_1.remove(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;scheme&#39;; });
719+
(0, utils_1.remove)(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;scheme&#39;; });
717720
}
718721
if (!this.urls.wwwMatches) {
719-
utils_1.remove(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;www&#39;; });
722+
(0, utils_1.remove)(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;www&#39;; });
720723
}
721724
if (!this.urls.tldMatches) {
722-
utils_1.remove(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;tld&#39;; });
725+
(0, utils_1.remove)(matches, function (m) { return m.getType() === &#39;url&#39; &amp;&amp; m.getUrlMatchType() === &#39;tld&#39;; });
723726
}
724727
return matches;
725728
};
@@ -884,7 +887,7 @@
884887
*
885888
* Ex: 0.25.1
886889
*/
887-
Autolinker.version = &#39;3.14.3&#39;;
890+
Autolinker.version = &#39;3.15.0&#39;;
888891
<span id='Autolinker-AnchorTagBuilder'> /**
889892
</span> * For backwards compatibility with Autolinker 1.x, the AnchorTagBuilder
890893
* class is provided as a static on the Autolinker class.

docs/api/source/anchor-tag-builder.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,13 @@
180180
return anchorText;
181181
var truncateLength = truncate.length, truncateLocation = truncate.location;
182182
if (truncateLocation === &#39;smart&#39;) {
183-
return truncate_smart_1.truncateSmart(anchorText, truncateLength);
183+
return (0, truncate_smart_1.truncateSmart)(anchorText, truncateLength);
184184
}
185185
else if (truncateLocation === &#39;middle&#39;) {
186-
return truncate_middle_1.truncateMiddle(anchorText, truncateLength);
186+
return (0, truncate_middle_1.truncateMiddle)(anchorText, truncateLength);
187187
}
188188
else {
189-
return truncate_end_1.truncateEnd(anchorText, truncateLength);
189+
return (0, truncate_end_1.truncateEnd)(anchorText, truncateLength);
190190
}
191191
};
192192
return AnchorTagBuilder;

docs/api/source/email-match.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* See this class&#39;s superclass ({@link Autolinker.match.Match}) for more details.
3030
*/
3131
var EmailMatch = (function (_super) {
32-
tslib_1.__extends(EmailMatch, _super);
32+
(0, tslib_1.__extends)(EmailMatch, _super);
3333
<span id='Autolinker-match-Email-method-constructor'> /**
3434
</span> * @method constructor
3535
* @param {Object} cfg The configuration properties for the Match

docs/api/source/email-matcher.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
// called multiple times, thus instantiating EmailMatcher and its RegExp
3232
// objects each time (which is very expensive - see https://github.com/gregjacobs/Autolinker.js/issues/314).
3333
// See descriptions of the properties where they are used for details about them
34-
var localPartCharRegex = new RegExp(&quot;[&quot; + regex_lib_1.alphaNumericAndMarksCharsStr + &quot;!#$%&amp;&#39;*+/=?^_`{|}~-]&quot;);
35-
var strictTldRegex = new RegExp(&quot;^&quot; + tld_regex_1.tldRegex.source + &quot;$&quot;);
34+
var localPartCharRegex = new RegExp(&quot;[&quot;.concat(regex_lib_1.alphaNumericAndMarksCharsStr, &quot;!#$%&amp;&#39;*+/=?^_`{|}~-]&quot;));
35+
var strictTldRegex = new RegExp(&quot;^&quot;.concat(tld_regex_1.tldRegex.source, &quot;$&quot;));
3636
<span id='Autolinker-matcher-Email'>/**
3737
</span> * @class Autolinker.matcher.Email
3838
* @extends Autolinker.matcher.Matcher
@@ -42,7 +42,7 @@
4242
* See this class&#39;s superclass ({@link Autolinker.matcher.Matcher}) for more details.
4343
*/
4444
var EmailMatcher = (function (_super) {
45-
tslib_1.__extends(EmailMatcher, _super);
45+
(0, tslib_1.__extends)(EmailMatcher, _super);
4646
function EmailMatcher() {
4747
var _this = _super !== null &amp;&amp; _super.apply(this, arguments) || this;
4848
<span id='Autolinker-matcher-Email-property-localPartCharRegex'> /**
@@ -108,7 +108,7 @@
108108
stateDomainDot(char);
109109
break;
110110
default:
111-
utils_1.throwUnhandledCaseError(state);
111+
(0, utils_1.throwUnhandledCaseError)(state);
112112
}
113113
// For debugging: search for other &quot;For debugging&quot; lines
114114
// table.push(
@@ -139,7 +139,7 @@
139139
// We&#39;ve reached the end of the &#39;mailto:&#39; prefix
140140
if (localPartCharRegex.test(char)) {
141141
state = 2 /* LocalPart */;
142-
currentEmailMatch = new CurrentEmailMatch(tslib_1.__assign(tslib_1.__assign({}, currentEmailMatch), { hasMailtoPrefix: true }));
142+
currentEmailMatch = new CurrentEmailMatch((0, tslib_1.__assign)((0, tslib_1.__assign)({}, currentEmailMatch), { hasMailtoPrefix: true }));
143143
}
144144
else {
145145
// we&#39;ve matched &#39;mailto:&#39; but didn&#39;t get anything meaningful
@@ -258,7 +258,7 @@
258258
// we now know that the domain part of the email is valid, and
259259
// we have found at least a partial EmailMatch (however, the
260260
// email address may have additional characters from this point)
261-
currentEmailMatch = new CurrentEmailMatch(tslib_1.__assign(tslib_1.__assign({}, currentEmailMatch), { hasDomainDot: true }));
261+
currentEmailMatch = new CurrentEmailMatch((0, tslib_1.__assign)((0, tslib_1.__assign)({}, currentEmailMatch), { hasDomainDot: true }));
262262
}
263263
else {
264264
// Anything else

docs/api/source/hashtag-match.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* details.
3232
*/
3333
var HashtagMatch = (function (_super) {
34-
tslib_1.__extends(HashtagMatch, _super);
34+
(0, tslib_1.__extends)(HashtagMatch, _super);
3535
<span id='Autolinker-match-Hashtag-method-constructor'> /**
3636
</span> * @method constructor
3737
* @param {Object} cfg The configuration properties for the Match
@@ -96,7 +96,7 @@
9696
return &#39;https://www.facebook.com/hashtag/&#39; + hashtag;
9797
case &#39;instagram&#39;:
9898
return &#39;https://instagram.com/explore/tags/&#39; + hashtag;
99-
case &#39;tiktok&#39;:
99+
case &#39;tiktok&#39;:
100100
return &#39;https://www.tiktok.com/tag/&#39; + hashtag;
101101
default: // Shouldn&#39;t happen because Autolinker&#39;s constructor should block any invalid values, but just in case.
102102
throw new Error(&#39;Unknown service name to point hashtag to: &#39; + serviceName);

docs/api/source/hashtag-matcher.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
// called multiple times, thus instantiating HashtagMatcher and its RegExp
2828
// objects each time (which is very expensive - see https://github.com/gregjacobs/Autolinker.js/issues/314).
2929
// See descriptions of the properties where they are used for details about them
30-
var matcherRegex = new RegExp(&quot;#[_&quot; + regex_lib_1.alphaNumericAndMarksCharsStr + &quot;]{1,139}(?![_&quot; + regex_lib_1.alphaNumericAndMarksCharsStr + &quot;])&quot;, &#39;g&#39;); // lookahead used to make sure we don&#39;t match something above 139 characters
30+
var matcherRegex = new RegExp(&quot;#[_&quot;.concat(regex_lib_1.alphaNumericAndMarksCharsStr, &quot;]{1,139}(?![_&quot;).concat(regex_lib_1.alphaNumericAndMarksCharsStr, &quot;])&quot;), &#39;g&#39;); // lookahead used to make sure we don&#39;t match something above 139 characters
3131
var nonWordCharRegex = new RegExp(&#39;[^&#39; + regex_lib_1.alphaNumericAndMarksCharsStr + &#39;]&#39;);
3232
<span id='Autolinker-matcher-Hashtag'>/**
3333
</span> * @class Autolinker.matcher.Hashtag
@@ -36,7 +36,7 @@
3636
* Matcher to find HashtagMatch matches in an input string.
3737
*/
3838
var HashtagMatcher = (function (_super) {
39-
tslib_1.__extends(HashtagMatcher, _super);
39+
(0, tslib_1.__extends)(HashtagMatcher, _super);
4040
<span id='Autolinker-matcher-Hashtag-method-constructor'> /**
4141
</span> * @method constructor
4242
* @param {Object} cfg The configuration properties for the Match instance,

docs/api/source/html-tag.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
HtmlTag.prototype.addClass = function (cssClass) {
209209
var classAttr = this.getClass(), whitespaceRegex = this.whitespaceRegex, classes = (!classAttr) ? [] : classAttr.split(whitespaceRegex), newClasses = cssClass.split(whitespaceRegex), newClass;
210210
while (newClass = newClasses.shift()) {
211-
if (utils_1.indexOf(classes, newClass) === -1) {
211+
if ((0, utils_1.indexOf)(classes, newClass) === -1) {
212212
classes.push(newClass);
213213
}
214214
}
@@ -224,7 +224,7 @@
224224
HtmlTag.prototype.removeClass = function (cssClass) {
225225
var classAttr = this.getClass(), whitespaceRegex = this.whitespaceRegex, classes = (!classAttr) ? [] : classAttr.split(whitespaceRegex), removeClasses = cssClass.split(whitespaceRegex), removeClass;
226226
while (classes.length &amp;&amp; (removeClass = removeClasses.shift())) {
227-
var idx = utils_1.indexOf(classes, removeClass);
227+
var idx = (0, utils_1.indexOf)(classes, removeClass);
228228
if (idx !== -1) {
229229
classes.splice(idx, 1);
230230
}

docs/api/source/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
Object.defineProperty(exports, &quot;__esModule&quot;, { value: true });
2727
exports.Autolinker = void 0;
2828
var tslib_1 = require(&quot;tslib&quot;);
29-
var autolinker_1 = tslib_1.__importDefault(require(&quot;./autolinker&quot;));
29+
var autolinker_1 = (0, tslib_1.__importDefault)(require(&quot;./autolinker&quot;));
3030
exports.Autolinker = autolinker_1.default;
3131
exports.default = autolinker_1.default;
32-
tslib_1.__exportStar(require(&quot;./autolinker&quot;), exports);
33-
tslib_1.__exportStar(require(&quot;./anchor-tag-builder&quot;), exports);
34-
tslib_1.__exportStar(require(&quot;./html-tag&quot;), exports);
35-
tslib_1.__exportStar(require(&quot;./match/index&quot;), exports);
36-
tslib_1.__exportStar(require(&quot;./matcher/index&quot;), exports);
32+
(0, tslib_1.__exportStar)(require(&quot;./autolinker&quot;), exports);
33+
(0, tslib_1.__exportStar)(require(&quot;./anchor-tag-builder&quot;), exports);
34+
(0, tslib_1.__exportStar)(require(&quot;./html-tag&quot;), exports);
35+
(0, tslib_1.__exportStar)(require(&quot;./match/index&quot;), exports);
36+
(0, tslib_1.__exportStar)(require(&quot;./matcher/index&quot;), exports);
3737

3838
//# sourceMappingURL=index.js.map
3939
</pre>

docs/api/source/index2.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
<pre class="prettyprint lang-js">&quot;use strict&quot;;
1919
Object.defineProperty(exports, &quot;__esModule&quot;, { value: true });
2020
var tslib_1 = require(&quot;tslib&quot;);
21-
tslib_1.__exportStar(require(&quot;./email-match&quot;), exports);
22-
tslib_1.__exportStar(require(&quot;./hashtag-match&quot;), exports);
23-
tslib_1.__exportStar(require(&quot;./match&quot;), exports);
24-
tslib_1.__exportStar(require(&quot;./mention-match&quot;), exports);
25-
tslib_1.__exportStar(require(&quot;./phone-match&quot;), exports);
26-
tslib_1.__exportStar(require(&quot;./url-match&quot;), exports);
21+
(0, tslib_1.__exportStar)(require(&quot;./email-match&quot;), exports);
22+
(0, tslib_1.__exportStar)(require(&quot;./hashtag-match&quot;), exports);
23+
(0, tslib_1.__exportStar)(require(&quot;./match&quot;), exports);
24+
(0, tslib_1.__exportStar)(require(&quot;./mention-match&quot;), exports);
25+
(0, tslib_1.__exportStar)(require(&quot;./phone-match&quot;), exports);
26+
(0, tslib_1.__exportStar)(require(&quot;./url-match&quot;), exports);
2727

2828
//# sourceMappingURL=index.js.map
2929
</pre>

docs/api/source/index3.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
<pre class="prettyprint lang-js">&quot;use strict&quot;;
1919
Object.defineProperty(exports, &quot;__esModule&quot;, { value: true });
2020
var tslib_1 = require(&quot;tslib&quot;);
21-
tslib_1.__exportStar(require(&quot;./email-matcher&quot;), exports);
22-
tslib_1.__exportStar(require(&quot;./hashtag-matcher&quot;), exports);
23-
tslib_1.__exportStar(require(&quot;./matcher&quot;), exports);
24-
tslib_1.__exportStar(require(&quot;./mention-matcher&quot;), exports);
25-
tslib_1.__exportStar(require(&quot;./phone-matcher&quot;), exports);
26-
tslib_1.__exportStar(require(&quot;./url-matcher&quot;), exports);
21+
(0, tslib_1.__exportStar)(require(&quot;./email-matcher&quot;), exports);
22+
(0, tslib_1.__exportStar)(require(&quot;./hashtag-matcher&quot;), exports);
23+
(0, tslib_1.__exportStar)(require(&quot;./matcher&quot;), exports);
24+
(0, tslib_1.__exportStar)(require(&quot;./mention-matcher&quot;), exports);
25+
(0, tslib_1.__exportStar)(require(&quot;./phone-matcher&quot;), exports);
26+
(0, tslib_1.__exportStar)(require(&quot;./url-matcher&quot;), exports);
2727

2828
//# sourceMappingURL=index.js.map
2929
</pre>

0 commit comments

Comments
 (0)