Files
oh-my-opencode/src/hooks/todo-continuation-enforcer/todo.ts
T

6 lines
198 B
TypeScript
Raw Normal View History

import type { Todo } from "./types"
export function getIncompleteCount(todos: Todo[]): number {
return todos.filter((todo) => todo.status !== "completed" && todo.status !== "cancelled").length
}