initial release
Release / release (push) Successful in 23s

This commit is contained in:
2025-12-30 11:56:21 -08:00
parent 82cacf484c
commit f2783b2587
12 changed files with 316 additions and 104 deletions
+2 -1
View File
@@ -2,7 +2,8 @@ import * as path from 'node:path'
export default class NodeFileSystemHandle implements FileSystemHandle {
kind: FileSystemHandleKind;
name: string;
path: string;
get name() { return path.basename(this.path) }
async isSameEntry(other: FileSystemHandle): Promise<boolean> {
if (typeof other != typeof this) return false
let thisName = this.name