chore(cloudfunc) throw( -> throw

This commit is contained in:
coderaiser 2015-08-11 05:39:51 -04:00
parent 4f2a507f2e
commit 5ff1de40d7

View file

@ -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),