10 lines
225 B
JavaScript
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
|