Skip to content

Commit

Permalink
refactor(dsp): update imports (transducers)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 20, 2021
1 parent 4bdecc9 commit 6e7bf71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/dsp-io-wav/src/write.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import {
u32,
u8,
} from "@thi.ng/transducers-binary/bytes";
import { comp } from "@thi.ng/transducers/func/comp";
import { concat } from "@thi.ng/transducers/iter/concat";
import { comp } from "@thi.ng/transducers/comp";
import { concat } from "@thi.ng/transducers/concat";
import { iterator } from "@thi.ng/transducers/iterator";
import { map } from "@thi.ng/transducers/map";
import { reduce } from "@thi.ng/transducers/reduce";
import { map } from "@thi.ng/transducers/xform/map";
import { take } from "@thi.ng/transducers/xform/take";
import { take } from "@thi.ng/transducers/take";
import type { WavSpec } from "./api";

const HEADER_SIZE = 44;
Expand Down
2 changes: 1 addition & 1 deletion packages/dsp/src/proc/aproc.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { IXform } from "@thi.ng/transducers";
import { map } from "@thi.ng/transducers/xform/map";
import { map } from "@thi.ng/transducers/map";
import type { IProc, IProc2 } from "../api";

/**
Expand Down

0 comments on commit 6e7bf71

Please sign in to comment.