Skip to content

Commit

Permalink
Merge pull request #11 from gyllstromk/revert-4-fix-unit-tests
Browse files Browse the repository at this point in the history
Revert "Fix a broken unit test (#3)"
  • Loading branch information
gyllstromk authored Feb 8, 2020
2 parents 77e6ba1 + 9b4ec69 commit 2ba8d05
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 333 deletions.
332 changes: 0 additions & 332 deletions package-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion xrange.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function () {

var XRange = function (start, finish, by) {
this.length = Math.abs(Math.ceil((finish - start) / by));
this.length = Math.ceil((finish - start) / by);

this.map = function (callback) {
/**
Expand Down

0 comments on commit 2ba8d05

Please sign in to comment.