File Explorer

/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/hasown

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.d.ts198 B · 5 lines
declare function hasOwn<O, K extends PropertyKey>(o: O, p: K): p is K & keyof O;declare function hasOwn<O, K extends PropertyKey, V = unknown>(o: O, p: K): o is O & Record<K, V>; export = hasOwn;