mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 12:49:30 +08:00
8 lines
205 B
Text
8 lines
205 B
Text
import Promise from './es6-promise/promise';
|
|
import polyfill from './es6-promise/polyfill';
|
|
|
|
polyfill();
|
|
// Strange compat..
|
|
Promise.polyfill = polyfill;
|
|
Promise.Promise = Promise;
|
|
export default Promise;
|