123456789101112131415161718192021222324252627282930 |
-
-
-
-
- FILESYSTEM_PREFIX = 'file:///';
-
- module.exports = {
- __format__: function (fullPath) {
- return (FILESYSTEM_PREFIX + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath));
- }
- };
|