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