Skip to content

Commit 2916b50

Browse files
committed
chore: rename
1 parent a2d9359 commit 2916b50

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# timeout-controller
1+
# timeout-abort-controller
22

3-
[![Build Status](https://travis-ci.org/jacobheun/timeout-controller.svg?branch=master)](https://travis-ci.org/jacobheun/timeout-controller) [![dependencies Status](https://david-dm.org/jacobheun/timeout-controller/status.svg)](https://david-dm.org/jacobheun/timeout-controller) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
3+
[![Build Status](https://travis-ci.org/jacobheun/timeout-abort-controller.svg?branch=master)](https://travis-ci.org/jacobheun/timeout-abort-controller) [![dependencies Status](https://david-dm.org/jacobheun/timeout-abort-controller/status.svg)](https://david-dm.org/jacobheun/timeout-abort-controller) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
44

55
> An AbortController that aborts after a specified timeout.
66
7-
`timeout-controller` uses [`retimer`](https://github.com/mcollina/retimer) internally to help reduce the impact of having numerous timers running.
7+
`timeout-abort-controller` uses [`retimer`](https://github.com/mcollina/retimer) internally to help reduce the impact of having numerous timers running.
88

99
## Install
1010

1111
```
12-
npm install timeout-controller
12+
npm install timeout-abort-controller
1313
```
1414

1515
## Usage
1616

1717
```js
1818
const AbortController = require('abort-controller')
19-
const TimeoutController = require('timeout-controller')
19+
const TimeoutController = require('timeout-abort-controller')
2020
const anySignal = require('any-signal')
2121

2222
const userController = new AbortController()

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "timeout-controller",
2+
"name": "timeout-abort-controller",
33
"version": "1.0.0",
44
"description": "An AbortController that aborts after a specified timeout",
55
"main": "index.js",
@@ -30,10 +30,10 @@
3030
},
3131
"repository": {
3232
"type": "git",
33-
"url": "git+https://github.com/jacobheun/timeout-controller.git"
33+
"url": "git+https://github.com/jacobheun/timeout-abort-controller.git"
3434
},
3535
"bugs": {
36-
"url": "https://github.com/jacobheun/timeout-controller/issues"
36+
"url": "https://github.com/jacobheun/timeout-abort-controller/issues"
3737
},
38-
"homepage": "https://github.com/jacobheun/timeout-controller#readme"
38+
"homepage": "https://github.com/jacobheun/timeout-abort-controller#readme"
3939
}

0 commit comments

Comments
 (0)