|
4 | 4 |
|
5 | 5 |
|
6 | 6 | >> If you came here looking for the source code, you're in the wrong file!
|
7 |
| - >> See the file `SvCoreLib.js` instead, it acts as a relay to all of SCLs features. |
| 7 | + >> See the file `SvCoreLib.js` instead, it acts as a proxy to all of SCLs features. |
8 | 8 | >> From there, you can follow the require()'s.
|
9 | 9 |
|
10 |
| - >> This file is responsible for the In-IDE documentation (usually seen by pressing CTRL+Space or hovering over stuff) |
| 10 | + >> This file is responsible for the In-IDE documentation and explicit types (usually seen by pressing CTRL+Space or hovering over stuff) |
11 | 11 | */
|
12 | 12 |
|
13 | 13 |
|
@@ -47,7 +47,9 @@ declare type PromiseState = "initialized" | "pending" | "fulfilled" | "rejected"
|
47 | 47 | *
|
48 | 48 | * ---
|
49 | 49 | *
|
50 |
| - * **[Documentation](https://github.com/Sv443/SvCoreLib/blob/master/docs.md#readme) • [GitHub Repo](https://github.com/Sv443-Network/SvCoreLib) • [Discord](https://dc.sv443.net)** |
| 50 | + * **[Documentation](https://github.com/Sv443-Network/SvCoreLib/blob/master/docs.md#readme) • [GitHub Repo](https://github.com/Sv443-Network/SvCoreLib) • [Discord](https://dc.sv443.net)** |
| 51 | + * |
| 52 | + * [Changelog](https://github.com/Sv443-Network/SvCoreLib/blob/master/changelog.md#readme) |
51 | 53 | *
|
52 | 54 | * ---
|
53 | 55 | *
|
@@ -537,7 +539,7 @@ declare module "svcorelib" {
|
537 | 539 |
|
538 | 540 | /**
|
539 | 541 | * 🔹 This function checks if a file exists at the given path.
|
540 |
| - * (Reimplementation of [`fs.exists()`](https://nodejs.org/api/fs.html#fs_fs_exists_path_callback) based on `fs.access()`) 🔹 |
| 542 | + * (Reimplementation of the deprecated [`fs.exists()`](https://nodejs.org/api/fs.html#fs_fs_exists_path_callback) based on `fs.access()`) 🔹 |
541 | 543 | * @param path The path to the file - Gets passed through [`path.resolve()`](https://nodejs.org/api/path.html#path_path_resolve_paths)
|
542 | 544 | * @returns Returned Promise always resolves to a boolean (and never rejects) - true, if the file exists, false if not
|
543 | 545 | * @throws Throws a TypeError if the `path` argument is not a string or couldn't be resolved to a valid path
|
|
0 commit comments