├── .github └── workflows │ ├── ci.yml │ ├── commit-if-modified.sh │ ├── copyright-year.sh │ ├── isaacs-makework.yml │ └── package-json-repo.js ├── .gitignore ├── LICENSE.md ├── README.md ├── clone.js ├── graceful-fs.js ├── legacy-streams.js ├── package.json ├── polyfills.js ├── test.js └── test ├── chown-er-ok.js ├── close.js ├── do-not-break-if-chdir-is-missing.js ├── enoent.js ├── max-open.js ├── monkeypatch-by-accident.js ├── open.js ├── read-write-stream.js ├── readdir-options.js ├── readdir-sort.js ├── readfile.js ├── retry.js ├── separate-old-stream-names.js ├── stats-uid-gid.js ├── stats.js ├── windows-rename-polyfill.js ├── write-then-read.js └── zzz-avoid-memory-leak.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/commit-if-modified.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/.github/workflows/commit-if-modified.sh -------------------------------------------------------------------------------- /.github/workflows/copyright-year.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/.github/workflows/copyright-year.sh -------------------------------------------------------------------------------- /.github/workflows/isaacs-makework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/.github/workflows/isaacs-makework.yml -------------------------------------------------------------------------------- /.github/workflows/package-json-repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/.github/workflows/package-json-repo.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/README.md -------------------------------------------------------------------------------- /clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/clone.js -------------------------------------------------------------------------------- /graceful-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/graceful-fs.js -------------------------------------------------------------------------------- /legacy-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/legacy-streams.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/package.json -------------------------------------------------------------------------------- /polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/polyfills.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test.js -------------------------------------------------------------------------------- /test/chown-er-ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/chown-er-ok.js -------------------------------------------------------------------------------- /test/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/close.js -------------------------------------------------------------------------------- /test/do-not-break-if-chdir-is-missing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/do-not-break-if-chdir-is-missing.js -------------------------------------------------------------------------------- /test/enoent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/enoent.js -------------------------------------------------------------------------------- /test/max-open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/max-open.js -------------------------------------------------------------------------------- /test/monkeypatch-by-accident.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/monkeypatch-by-accident.js -------------------------------------------------------------------------------- /test/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/open.js -------------------------------------------------------------------------------- /test/read-write-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/read-write-stream.js -------------------------------------------------------------------------------- /test/readdir-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/readdir-options.js -------------------------------------------------------------------------------- /test/readdir-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/readdir-sort.js -------------------------------------------------------------------------------- /test/readfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/readfile.js -------------------------------------------------------------------------------- /test/retry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/retry.js -------------------------------------------------------------------------------- /test/separate-old-stream-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/separate-old-stream-names.js -------------------------------------------------------------------------------- /test/stats-uid-gid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/stats-uid-gid.js -------------------------------------------------------------------------------- /test/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/stats.js -------------------------------------------------------------------------------- /test/windows-rename-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/windows-rename-polyfill.js -------------------------------------------------------------------------------- /test/write-then-read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/write-then-read.js -------------------------------------------------------------------------------- /test/zzz-avoid-memory-leak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/node-graceful-fs/HEAD/test/zzz-avoid-memory-leak.js --------------------------------------------------------------------------------