tutu/src/platform/polyfills.ts

9 lines
285 B
TypeScript
Raw Normal View History

//! This module has side effect.
//! It recommended to include the module by <script> tag.
if (!document.body.animate) {
// @ts-ignore: this file is polyfill, no exposed decls
import("web-animations-js").then(() => {
console.warn("web animation polyfill is included");
});
}