simple-git
Version:
Simple GIT interface for node.js
11 lines • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Parser for the `check-ignore` command - returns each file as a string array
*/
exports.parseCheckIgnore = (text) => {
return text.split(/\n/g)
.map(line => line.trim())
.filter(file => !!file);
};
//# sourceMappingURL=CheckIgnore.js.map