| 311 | } |
| 312 | |
| 313 | ::Windows::Foundation::TimeSpan TimeSpanFromMilli(int64_t millis) { |
| 314 | ::Windows::Foundation::TimeSpan timeSpan; |
| 315 | timeSpan.Duration = millis * 10000; |
| 316 | |
| 317 | return timeSpan; |
| 318 | } |
| 319 | |
| 320 | ::Windows::Foundation::DateTime DateTimeFromJSDate(Local<Value> value) { |
| 321 | ::Windows::Foundation::DateTime time; |
nothing calls this directly
no outgoing calls
no test coverage detected