From 886195c9a3f68150aec2106e4cdf73abe16907e4 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 12 Dec 2013 17:30:00 -0800 Subject: [PATCH] style --- index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index c0561ff..9325300 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,4 @@ +var base64 = require('base64-js') var TA = require('typedarray') exports.Buffer = Buffer @@ -359,7 +360,7 @@ function BufferCopy (target, target_start, start, end) { function _base64Slice (buf, start, end) { var bytes = buf.slice(start, end) - return require('base64-js').fromByteArray(bytes) + return base64.fromByteArray(bytes) } function _utf8Slice (buf, start, end) { @@ -1090,7 +1091,7 @@ function asciiToBytes (str) { } function base64ToBytes (str) { - return require('base64-js').toByteArray(str) + return base64.toByteArray(str) } function blitBuffer (src, dst, offset, length) { -- 2.34.1