Skip to content

Commit ed03815

Browse files
stijnie2210adriaandotcom
authored andcommitted
added to dist
1 parent 68ef0b2 commit ed03815

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

dist/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
'use strict';
22

3+
Object.defineProperty(exports, '__esModule', { value: true });
4+
35
/* globals document */
6+
const saEventKey = Symbol('saEvent');
47

58
const isPromise = (subject) =>
69
subject && subject.then && typeof subject.then == "function";
@@ -68,4 +71,5 @@ var index = {
6871
},
6972
};
7073

71-
module.exports = index;
74+
exports.default = index;
75+
exports.saEventKey = saEventKey;

dist/index.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* globals document */
2+
const saEventKey = Symbol('saEvent');
23

34
const isPromise = (subject) =>
45
subject && subject.then && typeof subject.then == "function";
@@ -66,4 +67,4 @@ var index = {
6667
},
6768
};
6869

69-
export { index as default };
70+
export { index as default, saEventKey };

0 commit comments

Comments
 (0)