Mission Control Dashboard - Initial implementation
This commit is contained in:
16
node_modules/motion-dom/dist/es/utils/supports/linear-easing.mjs
generated
vendored
Normal file
16
node_modules/motion-dom/dist/es/utils/supports/linear-easing.mjs
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { memoSupports } from './memo.mjs';
|
||||
|
||||
const supportsLinearEasing = /*@__PURE__*/ memoSupports(() => {
|
||||
try {
|
||||
document
|
||||
.createElement("div")
|
||||
.animate({ opacity: 0 }, { easing: "linear(0, 1)" });
|
||||
}
|
||||
catch (e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}, "linearEasing");
|
||||
|
||||
export { supportsLinearEasing };
|
||||
//# sourceMappingURL=linear-easing.mjs.map
|
||||
Reference in New Issue
Block a user