File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11'use strict' ;
22
3+ Object . defineProperty ( exports , '__esModule' , { value : true } ) ;
4+
35/* globals document */
6+ const saEventKey = Symbol ( 'saEvent' ) ;
47
58const 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 ;
Original file line number Diff line number Diff line change 11/* globals document */
2+ const saEventKey = Symbol ( 'saEvent' ) ;
23
34const 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 } ;
You can’t perform that action at this time.
0 commit comments