Skip to content

Commit 8c502c4

Browse files
committed
fix seqence creation from jStat object
1 parent b97e592 commit 8c502c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jStat.fn = jStat.prototype = {
5353

5454
// if first argument is number, assume creation of sequence
5555
} else if ( !isNaN( args[0] )) {
56-
this.push( jStat.seq.apply( null, args )[0] );
56+
this.push( jStat.seq.apply( null, args ));
5757
}
5858
return this;
5959
},

0 commit comments

Comments
 (0)