Skip to main content

Files

Provides convenient file shares access *

Constructors

new Files()

new Files(): Files

Returns

Files

Methods

openTable()

openTable(path): Promise <DataFrame>

Reads a table from file. If file contains more than one table, reads the first one.

Parameters

ParameterTypeDescription
pathstring

Returns

Promise <DataFrame>

Source

src/data.ts:16


openTables()

openTables(path): Promise <DataFrame[]>

Reads all tables from file

Parameters

ParameterTypeDescription
pathstring

Returns

Promise <DataFrame[]>

Source

src/data.ts:23