blob: 177a10d0cd38a60e79be27b45dc2ef9c9c71ae27 (
plain)
1
2
3
4
5
6
|
// This is CommonJS because lie is an external dependency, so Rollup
// can just ignore it.
if (typeof Promise === 'undefined' && typeof require !== 'undefined') {
require('lie/polyfill');
}
export default Promise;
|