From a12d2a9b5d0ddd2a234ebc23b2b8161ea684cae5 Mon Sep 17 00:00:00 2001 From: Marius Kleidl Date: Mon, 25 Nov 2024 15:44:17 +0100 Subject: [PATCH] Fix formatting --- src/Transloadit.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Transloadit.ts b/src/Transloadit.ts index bef4183..655c286 100644 --- a/src/Transloadit.ts +++ b/src/Transloadit.ts @@ -630,7 +630,8 @@ export class Transloadit { * Construct a signed Smart CDN URL. See https://transloadit.com/docs/topics/signature-authentication/#smart-cdn. */ getSignedSmartCDNUrl(opts: SmartCDNUrlOptions): string { - if (opts.workspace == null || opts.workspace === '') throw new TypeError('workspace is required') + if (opts.workspace == null || opts.workspace === '') + throw new TypeError('workspace is required') if (opts.template == null || opts.template === '') throw new TypeError('template is required') if (opts.input == null) throw new TypeError('input is required') // `input` can be an empty string.