Skip to content

Commit

Permalink
fix(transducers): base64 imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 24, 2018
1 parent e290d75 commit 75bb161
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/transducers/src/xform/base64.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Transducer, Reducer } from "../api";
import { compR } from "../func/comp";
import { isReduced } from "../index";
import { reduced } from "../reduced";
import { isReduced, reduced } from "../reduced";

const B64_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
const B64_SAFE = B64_CHARS.substr(0, 62) + "-_";
Expand Down

0 comments on commit 75bb161

Please sign in to comment.