codeformat

This commit is contained in:
Kaspars 2024-05-08 00:00:58 +02:00
parent a5b6022506
commit 4e6d39666a
2 changed files with 8 additions and 8 deletions

View file

@ -199,7 +199,7 @@ export const scale = register(
pat pat
.fmap((value) => { .fmap((value) => {
const isObject = typeof value === 'object'; const isObject = typeof value === 'object';
let step = isObject ? (value.note ?? value.n) : value; let step = isObject ? value.note ?? value.n : value;
if (isNote(step)) { if (isNote(step)) {
// legacy.. // legacy..
return pure(step); return pure(step);