shuishen
2020-11-09 4911e4d7abfc5470178c7d1e953b176b82384f7b
1
2
3
4
5
6
7
8
9
/**
 * Date.now Polyfill
 */
 
Date.now = function() {
    return +new Date();
};
 
/* End of file now.js */