Sentry/assets/coffee/index.coffee

10 lines
168 B
CoffeeScript
Raw Normal View History

2022-05-25 14:28:19 -04:00
si = require('systeminformation')
window.onload = () ->
si.cpu()
.then((data) ->
console.log(data)
).catch((error) ->
console.error(error)
)