UNPKG
animation-frame
Version:
latest (0.3.0)
0.3.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
An even better requestAnimationFrame
github.com/kof/animation-frame
kof/animation-frame
animation-frame
/
lib
/
now.js
12 lines
(10 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
/** * Crossplatform Date.now() * *
@return
{
Number
} time in ms *
@api
private
*/
module
.
exports
=
Date
.
now
||
function
(
) {
return
(
new
Date
).
getTime
() }