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