voltrevo/abstract-fs

View on GitHub
lib/System/index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

var path = require('path');

var Dir = require('./Dir.js');
var File = require('./File.js');

module.exports = {
  Dir: function(systemPath) {
    return Dir(path.normalize(systemPath));
  },
  File: function(systemPath) {
    return File(path.normalize(systemPath));
  }
};