aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/internal/base64.ts1
-rw-r--r--src/internal/deprecated.ts1
-rw-r--r--src/modules/helpers/eval.ts1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/base64.ts b/src/internal/base64.ts
index b346538a..e2702355 100644
--- a/src/internal/base64.ts
+++ b/src/internal/base64.ts
@@ -1,3 +1,4 @@
+/* eslint-disable no-undef -- This file serves as a compatibility layer between environments */
/**
* This works the same as `Buffer.from(input).toString('base64')`
* to work on both Node.js and browser environment.
diff --git a/src/internal/deprecated.ts b/src/internal/deprecated.ts
index fe2cdc94..3d82eb2e 100644
--- a/src/internal/deprecated.ts
+++ b/src/internal/deprecated.ts
@@ -43,5 +43,6 @@ export function deprecated(opts: DeprecatedOptions): void {
message += `. Please use ${opts.proposed} instead`;
}
+ // eslint-disable-next-line no-undef -- Using console here is intentional and required
console.warn(`${message}.`);
}
diff --git a/src/modules/helpers/eval.ts b/src/modules/helpers/eval.ts
index 5c34fbe6..e04575bc 100644
--- a/src/modules/helpers/eval.ts
+++ b/src/modules/helpers/eval.ts
@@ -142,6 +142,7 @@ function evalProcessFunction(
return entrypoint(...params);
}
+ // eslint-disable-next-line no-undef
console.warn(
`[@faker-js/faker]: Invoking expressions which are not functions is deprecated since v9.0 and will be removed in v10.0.
Please remove the parentheses or replace the expression with an actual function.