fromFile
Description
Examples
import path from 'path';
import {fromFile} from 'rxfs';
const csvContent = fromFile({
filePath: path.resolve(__dirname, './my-csv.csv'),
});
csvContent$.subscribe(console.log);
// "name","scariness"
// "Blackbeard",10
// "Morgan",9
// "Sparrow",2
// "Crunch",1API
Since
Parameters
Options
Returns
Arguments
Options
Last updated