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