aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/helpers/index.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/modules/helpers/index.ts b/src/modules/helpers/index.ts
index f62d9086..69a9995c 100644
--- a/src/modules/helpers/index.ts
+++ b/src/modules/helpers/index.ts
@@ -844,13 +844,6 @@ export class SimpleHelpersModule extends SimpleModuleBase {
* @since 6.3.0
*/
arrayElement<const T>(array: ReadonlyArray<T>): T {
- // TODO @xDivisionByZerox 2023-04-20: Remove in v9
- if (array == null) {
- throw new FakerError(
- 'Calling `faker.helpers.arrayElement()` without arguments is no longer supported.'
- );
- }
-
if (array.length === 0) {
throw new FakerError('Cannot get value from empty dataset.');
}
@@ -954,13 +947,6 @@ export class SimpleHelpersModule extends SimpleModuleBase {
max: number;
}
): T[] {
- // TODO @xDivisionByZerox 2023-04-20: Remove in v9
- if (array == null) {
- throw new FakerError(
- 'Calling `faker.helpers.arrayElements()` without arguments is no longer supported.'
- );
- }
-
if (array.length === 0) {
return [];
}