Files
xen-orchestra/@xen-orchestra/xapi/_isVmRunning.js
2022-03-23 09:48:07 +01:00

10 lines
225 B
JavaScript

'use strict'
const RUNNING_POWER_STATES = {
Running: true,
Paused: true,
}
module.exports = vmOrPowerState =>
(typeof vmOrPowerState === 'string' ? vmOrPowerState : vmOrPowerState.power_state) in RUNNING_POWER_STATES