UNPKG

git-cat-file

Version:

Pure JavaScript `git cat-file -p` for node.js

12 lines (11 loc) 300 B
"use strict"; /** * https://github.com/kawanet/git-cat-file */ Object.defineProperty(exports, "__esModule", { value: true }); exports.openLocalRepo = void 0; const repo_1 = require("./repo"); function openLocalRepo(path) { return new repo_1.Repo(path); } exports.openLocalRepo = openLocalRepo;