mirror of
https://github.com/unraid/api.git
synced 2026-01-13 03:59:58 -06:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
/*!
|
|
* Copyright 2019-2020 Lime Technology Inc. All rights reserved.
|
|
* Written by: Alexis Tyler
|
|
*/
|
|
|
|
import { varState } from '../../states';
|
|
|
|
/**
|
|
* Is the array running?
|
|
*/
|
|
export const arrayIsRunning = () => varState.data?.mdState.toLowerCase() === 'started';
|