UNPKG

libyear

Version:

A simple measure of software dependency freshness

10 lines (9 loc) 201 B
import { execaCommand } from "execa"; export const execute = async (cmd) => { try { return (await execaCommand(cmd)).stdout; } catch (error) { return error.stdout; } };