Skip to content

Commit

Permalink
Rename per code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ashsearle committed Jan 5, 2018
1 parent b216273 commit 420e6a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/moment/start-end-of.js
Expand Up @@ -4,8 +4,8 @@ import { hooks } from '../utils/hooks';
var MS_PER_SECOND = 1000;
var MS_PER_MINUTE = 60 * MS_PER_SECOND;
var MS_PER_HOUR = 60 * MS_PER_MINUTE;
var MS_PER_24_HOUR_DAY = 24 * MS_PER_HOUR;
var MS_PER_400_YEARS = (365 * 400 + 97) * MS_PER_24_HOUR_DAY;
var MS_PER_DAY = 24 * MS_PER_HOUR;
var MS_PER_400_YEARS = (365 * 400 + 97) * MS_PER_DAY;

// actual modulo - handles negative numbers (for dates before 1970):
function mod(dividend, divisor) {
Expand Down

0 comments on commit 420e6a8

Please sign in to comment.