String.purs 172 Bytes
Newer Older
1 2 3 4 5 6 7 8
module Gargantext.Utils.String where

import Data.Function.Uncurried (Fn1, runFn1)

foreign import _btoa :: Fn1 String String

btoa :: String -> String
btoa = runFn1 _btoa