fs-db.js 182 B

1234567
  1. var fsDb = require('js-git/mixins/fs-db');
  2. var nodeFs = require('../lib/node-fs');
  3. module.exports = function (repo, rootPath) {
  4. repo.rootPath = rootPath;
  5. fsDb(repo, nodeFs);
  6. };