├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── prebuild_manual_v4.yml │ ├── prebuild_manual_v5.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── binding.gyp ├── cpp └── binding.cc ├── package.json ├── src └── main.ts ├── tests ├── main.test.ts ├── tsconfig.json └── utils.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.json linguist-language=JSON-with-Comments 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/prebuild_manual_v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.github/workflows/prebuild_manual_v4.yml -------------------------------------------------------------------------------- /.github/workflows/prebuild_manual_v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.github/workflows/prebuild_manual_v5.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/binding.gyp -------------------------------------------------------------------------------- /cpp/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/cpp/binding.cc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/src/main.ts -------------------------------------------------------------------------------- /tests/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/tests/main.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/tests/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileyherbert/utimes/HEAD/tsconfig.json --------------------------------------------------------------------------------