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