Bump to v4.14.2.

This commit is contained in:
John-David Dalton
2016-08-07 21:21:03 -07:00
parent 623a72a129
commit 3d3ce0979f
74 changed files with 421 additions and 440 deletions

8
now.js
View File

@@ -1,4 +1,4 @@
define([], function() {
define(['./_root'], function(root) {
/**
* Gets the timestamp of the number of milliseconds that have elapsed since
@@ -16,9 +16,9 @@ define([], function() {
* }, _.now());
* // => Logs the number of milliseconds it took for the deferred invocation.
*/
function now() {
return Date.now();
}
var now = function() {
return root.Date.now();
};
return now;
});