UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

17 lines (13 loc) 294 B
/*! * @techmely/utils * Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com> * MIT Licensed */ // src/getCurrentGitBranch.ts import { $ } from "execa"; async function getCurrentGitBranch() { return await $`git rev-parse --abbrev-ref HEAD`; } export { getCurrentGitBranch };