Skip to content

Commit

Permalink
fix: remove unused exports
Browse files Browse the repository at this point in the history
  • Loading branch information
willfarrell committed May 15, 2023
1 parent 51e5c1f commit 838316a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/event-normalizer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const normalizeS3Key = (key) =>

// Start: AWS SDK unmarshall
// Reference: https://github.com/aws/aws-sdk-js-v3/blob/v3.113.0/packages/util-dynamodb/src/convertToNative.ts
export const unmarshall = (data) => convertValue.M(data ?? {})
const unmarshall = (data) => convertValue.M(data ?? {})

const convertValue = {
NULL: () => null,
Expand Down

0 comments on commit 838316a

Please sign in to comment.