Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/simple_utility/mod.pure.full.ts>sheetDecode

Simplify processing for Deno.
Latest
function sheetDecode
import { sheetDecode } from "https://deno.land/x/simple_utility@v2.3.2/mod.pure.full.ts";

Convert from EXCEL workbook to workbook object.

Examples

Example 1

const bin = await Deno.readFile("./book.xlsx");
const book = sheetDecode(bin);
const enc = sheetEncode(book);

Parameters

data: Uint8Array
optional
cp: number
optional
pw: string

Returns

Record<string, string[][]>