UNPKG

git-cat-file

Version:

A pure-JavaScript implementation of `git cat-file -p` for Node.js.

11 lines (8 loc) 220 B
/** * https://github.com/kawanet/git-cat-file */ import type {GCF} from "../types/git-cat-file.d.ts" import {Repo} from "./repo.ts" export function openLocalRepo(path: string): GCF.Repo { return new Repo(path) }