fix path helper

This commit is contained in:
Stas Vilchik 2016-01-07 09:32:28 +01:00
parent a86c930b9b
commit 645cbc1688

View File

@ -20,5 +20,5 @@
import { fileFromPath } from '../path'; import { fileFromPath } from '../path';
module.exports = function (path) { module.exports = function (path) {
return window.fileFromPath(path); return fileFromPath(path);
}; };