Skip to content

Commit

Permalink
fix readme, bump to first testable
Browse files Browse the repository at this point in the history
  • Loading branch information
loreanvictor committed Dec 21, 2023
1 parent bc77037 commit 3c67fc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { auditDebounce } from 'audit-debounce'
source$.pipe(
// debounce for 100ms, but also emit the latest value after 1000ms
auditDebounce(
() => timer(1000),
() => timer(100)
() => timer(100),
() => timer(1000)
)
)
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "audit-debounce",
"version": "0.0.2",
"version": "0.1.0",
"description": "rxjs operator to debounce and audit simultaenously",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
Expand Down

0 comments on commit 3c67fc9

Please sign in to comment.