File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ import * as base from '@most/prelude'
99import { of , empty , never } from './source/core'
1010import { from } from './source/from'
1111import { periodic } from './source/periodic'
12- import provideSymbolObservable from 'symbol-observable/ponyfill'
13- import { getPolyfill as getGlobalThis } from 'globalthis'
12+ const getGlobalThis = require ( 'globalthis' ) . getPolyfill
13+ const provideSymbolObservable = require ( 'symbol-observable/ponyfill' ) . default
1414
1515const symbolObservable = provideSymbolObservable ( getGlobalThis ( ) )
1616
Original file line number Diff line number Diff line change 22/** @author Brian Cavalier */
33/** @author John Hann */
44
5- import provideSymbolObservable from 'symbol-observable/ponyfill'
6- import { getPolyfill as getGlobalThis } from 'globalthis'
5+ const getGlobalThis = require ( 'globalthis' ) . getPolyfill
6+ const provideSymbolObservable = require ( 'symbol-observable/ponyfill' ) . default
77
88const symbolObservable = provideSymbolObservable ( getGlobalThis ( ) )
99
Original file line number Diff line number Diff line change 11import { spec , referee } from 'buster'
22
33import * as most from '../src/index'
4- import provideSymbolObservable from 'symbol-observable/ponyfill'
5- import { getPolyfill as getGlobalThis } from 'globalthis'
4+ const getGlobalThis = require ( 'globalthis' ) . getPolyfill
5+ const provideSymbolObservable = require ( 'symbol-observable/ponyfill' ) . default
66
77const symbolObservable = provideSymbolObservable ( getGlobalThis ( ) )
88
You can’t perform that action at this time.
0 commit comments