---
url: /process-functions/csvreader-getlinebreak.md
description: >-
  Returns the character the csv reader object is using to signify a line break
  in the connected csv file.
---

# CSVReader » getLineBreak

Returns the character the csv reader object is using to signify a line break in the connected csv file.

#### Parameters

No parameters

#### Example

```js
let csv = datasource.csvRead("example_file.csv", 0); 
​let lb = csv.getLineBreak();​​​​​​ 
console.log(lb);
```

Result: `\r\n`
