Skip to content

Commit

Permalink
Add language hints to the README examples (#1034)
Browse files Browse the repository at this point in the history
  • Loading branch information
khill-fbmc committed Dec 18, 2023
1 parent e2d570e commit fbaeca2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Expand Up @@ -23,19 +23,21 @@ Install

papaparse is available on [npm](https://www.npmjs.com/package/papaparse). It
can be installed with the following command:

npm install papaparse
```shell
npm install papaparse
```

If you don't want to use npm, [papaparse.min.js](https://unpkg.com/papaparse@latest/papaparse.min.js) can be downloaded to your project source.

Usage
-----
```js
import Papa from 'papaparse';

import Papa from 'papaparse';

Papa.parse(file, config);
Papa.parse(file, config);

const csv = Papa.unparse(data[, config]);
const csv = Papa.unparse(data[, config]);
```

Homepage & Demo
----------------
Expand Down

0 comments on commit fbaeca2

Please sign in to comment.