File rx.lite.aggregates.js
has 1038 lines of code (exceeds 250 allowed). Consider refactoring.
;(function (factory) {
var objectTypes = {
'function': true,
Function sequenceEqual
has 62 lines of code (exceeds 25 allowed). Consider refactoring.
observableProto.sequenceEqual = function (second, comparer) {
var first = this;
comparer || (comparer = defaultComparer);
return new AnonymousObservable(function (o) {
var donel = false, doner = false, ql = [], qr = [];
Function SingleObserver
has 41 lines of code (exceeds 25 allowed). Consider refactoring.
var SingleObserver = (function(__super__) {
inherits(SingleObserver, __super__);
function SingleObserver(o, obj, s) {
this._o = o;
this._obj = obj;
Function LastObserver
has 38 lines of code (exceeds 25 allowed). Consider refactoring.
var LastObserver = (function(__super__) {
inherits(LastObserver, __super__);
function LastObserver(o, obj, s) {
this._o = o;
this._obj = obj;
Function ExtremaByObserver
has 35 lines of code (exceeds 25 allowed). Consider refactoring.
var ExtremaByObserver = (function (__super__) {
inherits(ExtremaByObserver, __super__);
function ExtremaByObserver(o, k, c) {
this._o = o;
this._k = k;
Function ReduceObserver
has 34 lines of code (exceeds 25 allowed). Consider refactoring.
var ReduceObserver = (function (__super__) {
inherits(ReduceObserver, __super__);
function ReduceObserver(o, parent) {
this._o = o;
this._p = parent;
Function FirstObserver
has 31 lines of code (exceeds 25 allowed). Consider refactoring.
var FirstObserver = (function(__super__) {
inherits(FirstObserver, __super__);
function FirstObserver(o, obj, s) {
this._o = o;
this._obj = obj;
Function FindValueObserver
has 27 lines of code (exceeds 25 allowed). Consider refactoring.
var FindValueObserver = (function(__super__) {
inherits(FindValueObserver, __super__);
function FindValueObserver(observer, source, callback, yieldIndex) {
this._o = observer;
this._s = source;
Function LastIndexOfObserver
has 27 lines of code (exceeds 25 allowed). Consider refactoring.
var LastIndexOfObserver = (function (__super__) {
inherits(LastIndexOfObserver, __super__);
function LastIndexOfObserver(o, e, n) {
this._o = o;
this._e = e;
Function AverageObserver
has 26 lines of code (exceeds 25 allowed). Consider refactoring.
var AverageObserver = (function(__super__) {
inherits(AverageObserver, __super__);
function AverageObserver(o, fn, s) {
this._o = o;
this._fn = fn;
Function ToMapObserver
has 26 lines of code (exceeds 25 allowed). Consider refactoring.
var ToMapObserver = (function (__super__) {
inherits(ToMapObserver, __super__);
function ToMapObserver(o, k, e) {
this._o = o;
this._k = k;
Similar blocks of code found in 2 locations. Consider refactoring.
;(function (factory) {
var objectTypes = {
'function': true,
'object': true
};
modules/rx-lite-aggregates-compat/rx.lite.aggregates.compat.js on lines 3..1365 There are no issues that match your filters.