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
+2 -2
View File
@@ -152,8 +152,8 @@ export const itri2 = fastcat(isaw2, saw2);
*
* @return {Pattern}
*/
export const time = signal(x => {
return x.valueOf()
export const time = signal((x) => {
return x.valueOf();
});
/**
+1 -1
View File
@@ -877,7 +877,7 @@ describe('Pattern', () => {
.squeezeJoin()
.queryArc(3, 4)
.map((x) => x.value),
).toStrictEqual([Fraction(3)]);
).toStrictEqual([3]);
});
});
describe('ply', () => {