Skip to content

Commit

Permalink
Merge pull request #436 from hjdivad/fix-maybe-invalid-es6
Browse files Browse the repository at this point in the history
Fix invalid es6.
  • Loading branch information
stefanpenner committed Sep 20, 2016
2 parents 77e218e + c8aab0c commit 6b515d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rsvp/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export let isArray = _isArray;

// Date.now is not available in browsers < IE9
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now#Compatibility
export let now = Date.now || () => new Date().getTime();
export let now = Date.now || (() => new Date().getTime());

function F() { }

Expand Down

0 comments on commit 6b515d4

Please sign in to comment.