diff --git a/Text/Jasmine.hs b/Text/Jasmine.hs
--- a/Text/Jasmine.hs
+++ b/Text/Jasmine.hs
@@ -2,6 +2,7 @@
     (       
       minify
     , minifym  
+    , minifyBb  
     , minifyFile  
     ) where      
     
@@ -15,6 +16,11 @@
              Left msg -> Left msg
              Right p  -> Right $ BB.toLazyByteString $ renderJS p                   
 
+minifyBb :: LB.ByteString -> Either String BB.Builder
+minifyBb s = case readJsm s of
+             Left msg -> Left msg
+             Right p  -> Right (renderJS p)
+             
 minify :: LB.ByteString -> LB.ByteString
 minify s = BB.toLazyByteString $ renderJS $ readJs s
 
diff --git a/hjsmin.cabal b/hjsmin.cabal
--- a/hjsmin.cabal
+++ b/hjsmin.cabal
@@ -1,5 +1,5 @@
 name:            hjsmin
-version:         0.0.2
+version:         0.0.3
 license:         BSD3
 license-file:    LICENSE
 author:          Alan Zimmerman <alan.zimm@gmail.com>
