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