From 5ff1de40d789e8bae6e5d258c43c5c03f74da980 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 11 Aug 2015 05:39:51 -0400 Subject: [PATCH] chore(cloudfunc) throw( -> throw --- lib/cloudfunc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cloudfunc.js b/lib/cloudfunc.js index b7c64e73..1387693c 100644 --- a/lib/cloudfunc.js +++ b/lib/cloudfunc.js @@ -93,10 +93,10 @@ path = '/'; if (!url) - throw(Error('url could not be empty!')); + throw Error('url could not be empty!'); if (!template) - throw(Error('template could not be empty!')); + throw Error('template could not be empty!'); namesRaw = url.split('/') .slice(1, -1),