File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -66,15 +66,19 @@ export class Helper extends APIResource {
6666
6767 const addAsQuery = transformationUtils . addAsQueryParameter ( opts ) || isSrcParameterUsedForURL ;
6868
69- const TRANSFORMATION_PLACEHOLDER = " PLEASEREPLACEJUSTBEFORESIGN" ;
69+ const TRANSFORMATION_PLACEHOLDER = ' PLEASEREPLACEJUSTBEFORESIGN' ;
7070
7171 if ( ! isAbsoluteURL ) {
7272 // For non-absolute URLs, construct the path: endpoint_path + transformations + src
7373 const endpointPath = new URL ( opts . urlEndpoint ) . pathname ;
7474 const pathParts = [ endpointPath ] ;
7575
7676 if ( transformationString && transformationString . length && ! addAsQuery ) {
77- pathParts . push ( TRANSFORMATION_PARAMETER + transformationUtils . getChainTransformDelimiter ( ) + TRANSFORMATION_PLACEHOLDER ) ;
77+ pathParts . push (
78+ TRANSFORMATION_PARAMETER +
79+ transformationUtils . getChainTransformDelimiter ( ) +
80+ TRANSFORMATION_PLACEHOLDER ,
81+ ) ;
7882 }
7983
8084 pathParts . push ( opts . src ) ;
You can’t perform that action at this time.
0 commit comments