Mission Control Dashboard - Initial implementation
This commit is contained in:
15
node_modules/motion-dom/dist/es/utils/mix/index.mjs
generated
vendored
Normal file
15
node_modules/motion-dom/dist/es/utils/mix/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { getMixer } from './complex.mjs';
|
||||
import { mixNumber } from './number.mjs';
|
||||
|
||||
function mix(from, to, p) {
|
||||
if (typeof from === "number" &&
|
||||
typeof to === "number" &&
|
||||
typeof p === "number") {
|
||||
return mixNumber(from, to, p);
|
||||
}
|
||||
const mixer = getMixer(from);
|
||||
return mixer(from, to);
|
||||
}
|
||||
|
||||
export { mix };
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user