Showing 8 of 8 total issues
File rx.lite.extras.js
has 572 lines of code (exceeds 250 allowed). Consider refactoring. Open
// Copyright (c) Microsoft, All rights reserved. See License.txt in the project root for license information. ;(function (factory) { var objectTypes = { 'function': true,
Function amb
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
observableProto.amb = function (rightSource) { var leftSource = this; return new AnonymousObservable(function (observer) { var choice, leftChoice = 'L', rightChoice = 'R',
Function GenerateObservable
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
var GenerateObservable = (function (__super__) { inherits(GenerateObservable, __super__); function GenerateObservable(state, cndFn, itrFn, resFn, s) { this._initialState = state; this._cndFn = cndFn;
Function windowCount
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
observableProto.windowWithCount = observableProto.windowCount = function (count, skip) { var source = this; +count || (count = 0); Math.abs(count) === Infinity && (count = 0); if (count <= 0) { throw new ArgumentOutOfRangeError(); }
Function CheckedObserver
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
var CheckedObserver = (function (__super__) { inherits(CheckedObserver, __super__); function CheckedObserver(observer) { __super__.call(this);
Function GenerateObservable
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
function GenerateObservable(state, cndFn, itrFn, resFn, s) {
Function generate
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Observable.generate = function (initialState, condition, iterate, resultSelector, scheduler) {
Similar blocks of code found in 2 locations. Consider refactoring. Open
;(function (factory) { var objectTypes = { 'function': true, 'object': true };
- Read upRead up