UNPKG

read-excel-file

Version:

Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.

11 lines (10 loc) 279 B
import { Row, Schema } from '../types.d.js'; export default function mapWithLegacyBehavior<T>(data: Row[], schema: Schema<T>, options?: { ignoreEmptyRows?: boolean, includeNullValues?: boolean, isColumnOriented?: boolean, rowMap?: Record<string, number> }): T[];