12345678910111213141516171819202122232425262728293031323334 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.testDirectoryIsWritable = exports.pathToLocation = void 0;
- const pathToLocation = (path) => {
- if (path[0] === "/" /* FsaToNodeConstants.Separator */)
- path = path.slice(1);
- if (path[path.length - 1] === "/" /* FsaToNodeConstants.Separator */)
- path = path.slice(0, -1);
- const lastSlashIndex = path.lastIndexOf("/" /* FsaToNodeConstants.Separator */);
- if (lastSlashIndex === -1)
- return [[], path];
- const file = path.slice(lastSlashIndex + 1);
- const folder = path.slice(0, lastSlashIndex).split("/" /* FsaToNodeConstants.Separator */);
- return [folder, file];
- };
- exports.pathToLocation = pathToLocation;
- const testDirectoryIsWritable = async (dir) => {
- const testFileName = '__memfs_writable_test_file_' + Math.random().toString(36).slice(2) + Date.now();
- try {
- await dir.getFileHandle(testFileName, { create: true });
- return true;
- }
- catch (_a) {
- return false;
- }
- finally {
- try {
- await dir.removeEntry(testFileName);
- }
- catch (e) { }
- }
- };
- exports.testDirectoryIsWritable = testDirectoryIsWritable;
- //# sourceMappingURL=util.js.map
|