mjackson/mach

View on GitHub
modules/utils/File.js

Summary

Maintainability
A
0 mins
Test Coverage
function File(properties) {
  this.path = properties.path;
  this.name = properties.name;
  this.type = properties.type;
  this.size = properties.size;
}

module.exports = File;