Skip to main content
Go to Latest
function excelDecodeRaw
import { excelDecodeRaw } from "https://deno.land/x/simple_utility@v2.0.10/mod.pure.full.ts";

Convert from EXCEL workbook to sheetjs raw workbook object.

Examples

Example 1

const bin = await Deno.readFile("./book.xlsx");
const book = excelDecodeRaw(bin);
const enc = excelEncodeRaw(book);

Parameters

data: Uint8Array
optional
cp: number
optional
pw: string