You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @ts-expect-error TypeScript warns us about importing ESM module from CommonJS module, but we can ignore since this code will be consumed by webpack.
44
45
import{faker}from'@faker-js/faker/locale/en';
45
46
46
47
constDEFAULT_SAMPLE_SIZE=100;
@@ -715,6 +716,10 @@ function transformFakerSchemaToObject(
715
716
716
717
/**
717
718
* Checks if the method exists and is callable on the faker object.
719
+
*
720
+
* Note: Only supports the format `module.method` (e.g., `internet.email`).
721
+
* Nested modules or other formats are not supported.
0 commit comments