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