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