Skip to content

Commit

Permalink
refactor(rstream): use SEMAPHORE from thi.ng/api, not transducers
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Aug 9, 2018
1 parent 5d5c70a commit f3d4646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rstream/src/subscription.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { IDeref } from "@thi.ng/api/api";
import { IDeref, SEMAPHORE } from "@thi.ng/api/api";
import { implementsFunction } from "@thi.ng/checks/implements-function";
import { isFunction } from "@thi.ng/checks/is-function";
import { isString } from "@thi.ng/checks/is-string";
import { illegalArity } from "@thi.ng/errors/illegal-arity";
import { illegalState } from "@thi.ng/errors/illegal-state";
import { Reducer, SEMAPHORE, Transducer } from "@thi.ng/transducers/api";
import { Reducer, Transducer } from "@thi.ng/transducers/api";
import { comp } from "@thi.ng/transducers/func/comp";
import { isReduced, unreduced } from "@thi.ng/transducers/reduced";
import { push } from "@thi.ng/transducers/rfn/push";
Expand Down

0 comments on commit f3d4646

Please sign in to comment.