From a7175bcd9c13ab8d88cdc0b32cd061b28399aadd Mon Sep 17 00:00:00 2001 From: Shreyas Shrawage <55741087+shreyventure@users.noreply.github.com> Date: Mon, 3 Apr 2023 10:31:22 +0530 Subject: [PATCH] Added the missing 'write' function to the imports Replaced unused 'read' function from the imports with the 'write' function used in the code. --- docz/docs/03-demos/22-azure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docz/docs/03-demos/22-azure.md b/docz/docs/03-demos/22-azure.md index 6271fec3..47b48bb7 100644 --- a/docz/docs/03-demos/22-azure.md +++ b/docz/docs/03-demos/22-azure.md @@ -256,7 +256,7 @@ console.log(utils.sheet_to_csv(wb.Sheets[wb.SheetNames[0]])); ```js title="SheetJSWriteToAzure.mjs" import { BlobServiceClient } from "@azure/storage-blob"; -import { read, utils } from "xlsx"; +import { write, utils } from "xlsx"; /* replace these constants */ const connStr = "";