mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import application = require("application");
|
|
|
|
global.time = function(): number {
|
|
if (global.android) {
|
|
return java.lang.System.nanoTime() / 1000000; // 1 ms = 1000000 ns
|
|
}
|
|
else {
|
|
return CACurrentMediaTime() * 1000;
|
|
}
|
|
}
|
|
|
|
application.start({ moduleName: "css-perf-test/root" }); |