rhanekom/skyrta

View on GitHub
lib/command.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = class Command {
    constructor(exec, options, input, tmpfiles) {
        this.exec = exec;
        this.args = options || [];
        this.input = input || '';
        this.tmpfiles = tmpfiles || [];
    }
};