1234567891011121314151617181920212223242526272829 |
-
-
- FILESYSTEM_PROTOCOL = 'cdvfile';
-
- module.exports = {
- __format__: function (fullPath) {
- var path = ('/' + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath)).replace('//', '/');
- return FILESYSTEM_PROTOCOL + '://localhost' + path;
- }
- };
|