This repository has been archived by the owner on Aug 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use retimer to avoid creating so many timers (#289)
* use retimer to avoid scheduling so many timers * Fixed linting
- Loading branch information
Showing
7 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,8 @@ | |
"once": "^1.4.0", | ||
"peer-id": "~0.12.0", | ||
"peer-info": "~0.14.1", | ||
"pull-stream": "^3.6.9" | ||
"pull-stream": "^3.6.9", | ||
"retimer": "^2.0.0" | ||
}, | ||
"contributors": [ | ||
"Alan Shaw <[email protected]>", | ||
|
@@ -93,6 +94,7 @@ | |
"Kevin Kwok <[email protected]>", | ||
"Kobi Gurkan <[email protected]>", | ||
"Maciej Krüger <[email protected]>", | ||
"Matteo Collina <[email protected]>", | ||
"Michael Fakhry <[email protected]>", | ||
"Oli Evans <[email protected]>", | ||
"Pau Ramon Revilla <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/* eslint-env mocha */ | ||
/* eslint no-warning-comments: off */ | ||
'use strict' | ||
|
||
const chai = require('chai') | ||
|