azure-devops-mcp

by RyanCardin15
Verified
import filter from './filter.js'; // Trim out all falsy values from an array. export default function compact(array) { return filter(array, Boolean); }