MCPcopy
hub / github.com/faker-js/faker / FakerCore

Interface FakerCore

src/core.ts:12–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10 * The core grants access to the locale data, the randomizer and config settings.
11 */
12export interface FakerCore {
13 /**
14 * The locale data associated with this instance.
15 *
16 * Always present, but it might be empty if the locale data is not available.
17 */
18 readonly locale: LocaleProxy;
19
20 /**
21 * The randomizer used to generate random values.
22 */
23 readonly randomizer: Randomizer;
24
25 /**
26 * The configuration settings used by this instance.
27 */
28 readonly config: FakerConfig;
29}
30
31export interface FakerOptions {
32 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected