Skip to main content
Module

x/simple_utility/mod.full.ts>excelDecode

Simplify processing for Deno.
Go to Latest
function excelDecode
import { excelDecode } from "https://deno.land/x/simple_utility@v2.0.10/mod.full.ts";

Convert from EXCEL workbook to workbook object.

Examples

Example 1

const bin = await Deno.readFile("./book.xlsx");
const book = excelDecode(bin);
const enc = excelEncode(book);

Parameters

data: Uint8Array
optional
cp: number
optional
pw: string

Returns

Record<string, string[][]>