liuyg
2021-06-28 bc22bb69fee34a1901f2d3821a022cd848f8921c
1
2
3
4
5
6
7
8
9
/**
 * Date.now Polyfill
 */
 
Date.now = function() {
    return +new Date();
};
 
/* End of file now.js */