Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aldipermanaetikaputra committed Apr 4, 2023
1 parent fafe1c7 commit 223850e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ mmmmnnnn
oooo
```

**NOTE:** This method can be called concurrently with safe because it used [async-mutex](https://github.com/DirtyHairy/async-mutex) library to handle Mutual Exclusion.
**NOTE:** This method can be called concurrently with safe because it used [async-mutex](https://github.com/DirtyHairy/async-mutex) module to handle Mutual Exclusion.

#### `reset(): void`

Expand Down Expand Up @@ -164,6 +164,22 @@ The property of `ChunkReader` instance you can access are:
| isOpened | `boolean` | Indicates whether the reader has opened the file or `open()` has been called |
| isClosed | `boolean` | Indicates whether the reader has closed the file or `close()` has been called |

## Testing

This library is well tested. You can test the code as follows:

NPM

```sh
npm test
```

yarn

```sh
yarn test
```

## Related

- [line-reader2](https://github.com/aldipermanaetikaputra/line-reader2) - Asynchronous, buffered, line-by-line file reader with customizable buffer size and separator.
Expand Down

0 comments on commit 223850e

Please sign in to comment.