Simple Computer Status Checker
This package provides basic functions to check the status of a computer or server. It currently includes two functions that always return true
to indicate that the computer or server is "on."
Functions
is_computer_on()
Returns true
to indicate that the computer is on.
```javascript const {is_computer_on} = require('@afghan_goat/is-computer-on');
console.log(is_computer_on()); // Output: true
server_is_computer_on()
Returns true
to indicate that the computer is on. Supports server too, not just client.
```javascript const {server_is_computer_on} = require('@afghan_goat/is-computer-on');
console.log(server_is_computer_on()); // Output: true