7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
|
|
import { RunningStatus } from './constant';
|
||
|
|
|
||
|
|
export const isParserRunning = (text: RunningStatus) => {
|
||
|
|
const isRunning = text === RunningStatus.RUNNING;
|
||
|
|
return isRunning;
|
||
|
|
};
|