tutu/src/platform/polyfills.ts
2024-08-12 17:25:03 +08:00

9 lines
285 B
TypeScript

//! 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");
});
}