How to use the turbo-git-config.parse function in turbo-git-config

To help you get started, we’ve selected a few turbo-git-config examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github labs-js / turbo-git / bin / turbo-add.js View on Github external
(function() {
    'use strict';
    var Add = require('turbo-git-add'),
        addCommand = new Add();

    require('turbo-git-config').parse;

    addCommand.init();
})();