From f70c5af0041a6ff197dd733b799f4a9bbea264a9 Mon Sep 17 00:00:00 2001 From: Tigran Sargsyan Date: Sun, 27 Oct 2024 10:58:13 +0400 Subject: [PATCH] Remove Date.now polyfill --- src/utils.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/utils.js b/src/utils.js index 2c7fe178..95338093 100644 --- a/src/utils.js +++ b/src/utils.js @@ -339,9 +339,6 @@ _.encodeDates = function(obj) { }; _.timestamp = function() { - Date.now = Date.now || function() { - return +new Date; - }; return Date.now(); };