refactor: remove now redundant controls imports

This commit is contained in:
Felix Roos 2024-02-28 00:36:44 +01:00
parent 8efadd2547
commit 664a19a5c4
12 changed files with 20 additions and 41 deletions

View file

@ -51,9 +51,8 @@ import {
import { steady } from '../signal.mjs';
import controls from '../controls.mjs';
import { n, s } from '../controls.mjs';
const { n, s } = controls;
const st = (begin, end) => new State(ts(begin, end));
const ts = (begin, end) => new TimeSpan(Fraction(begin), Fraction(end));
const hap = (whole, part, value, context = {}) => new Hap(whole, part, value, context);