Skip to content

Commit

Permalink
Put commas everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
kofon95 committed Oct 30, 2019
1 parent db5241c commit c2f7f1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict'


const AWS = require('aws-sdk')
const AWS = require('aws-sdk');
const S3 = new AWS.S3({signatureVersion: 'v4'});
const Sharp = require('sharp');
const PathPattern = /(.*\/)?(.*)\/(.*)/;

// parameters
const {BUCKET, URL} = process.env
const {BUCKET, URL} = process.env;


exports.handler = async (event) => {
Expand Down Expand Up @@ -44,7 +44,7 @@ exports.handler = async (event) => {
break;
case 'min':
fit = 'outside';
break
break;
default:
fit = 'cover';
break;
Expand Down

0 comments on commit c2f7f1f

Please sign in to comment.