From 99ac8658433adb35143884c2be6f54e068d82e55 Mon Sep 17 00:00:00 2001 From: Antoni Kepinski Date: Mon, 20 Jan 2020 21:15:44 +0100 Subject: [PATCH] export the `parse` function --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index bb1b6c6..d7b26ff 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,5 +2,6 @@ import Cashify from './cashify'; import convert from './convert'; +import parse from './utils/parser'; -export {Cashify, convert}; +export {Cashify, convert, parse};