From 71dcd103b00c060aa8f56b7a0ee97513b4e68ba9 Mon Sep 17 00:00:00 2001 From: Hardeep Jethwani Date: Thu, 6 Jan 2022 23:58:13 +0530 Subject: [PATCH] replaced node-uuid with uuid as node-uuid module is deprecated, so replacing the same with uuid --- sample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample.js b/sample.js index 5d947ff..83d1c9d 100644 --- a/sample.js +++ b/sample.js @@ -16,7 +16,7 @@ // Load the SDK and UUID var AWS = require('aws-sdk'); -var uuid = require('node-uuid'); +var uuid = require('uuid'); // Create an S3 client var s3 = new AWS.S3();