This commit is contained in:
Jade (Rose) Rowland 2025-09-15 22:09:05 -04:00
parent 74e27ca94f
commit 4cc453c640
2 changed files with 3 additions and 3 deletions

View file

@ -152,8 +152,8 @@ export const itri2 = fastcat(isaw2, saw2);
* *
* @return {Pattern} * @return {Pattern}
*/ */
export const time = signal(x => { export const time = signal((x) => {
return x.valueOf() return x.valueOf();
}); });
/** /**

View file

@ -877,7 +877,7 @@ describe('Pattern', () => {
.squeezeJoin() .squeezeJoin()
.queryArc(3, 4) .queryArc(3, 4)
.map((x) => x.value), .map((x) => x.value),
).toStrictEqual([Fraction(3)]); ).toStrictEqual([3]);
}); });
}); });
describe('ply', () => { describe('ply', () => {