Reactive-Extensions/RxJS

View on GitHub
ts/core/observer-lite.ts

Summary

Maintainability
A
2 hrs
Test Coverage

Showing 2 of 2 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

export interface Observer<T> {
/**
* Notifies the observer of a new element in the sequence.
* @param {Any} value Next element in the sequence.
*/
Severity: Major
Found in ts/core/observer-lite.ts and 1 other location - About 1 hr to fix
ts/core/observer-lite.ts on lines 7..22

Similar blocks of code found in 2 locations. Consider refactoring.
Open

export interface IObserver<T> {
/**
* Notifies the observer of a new element in the sequence.
* @param {Any} value Next element in the sequence.
*/
Severity: Major
Found in ts/core/observer-lite.ts and 1 other location - About 1 hr to fix
ts/core/observer-lite.ts on lines 24..39
Category
Status