* Generates a random commit message. * * @example * faker.git.commitMessage() // 'reboot cross-platform driver' * * @since 5.0.0
()
| 119 | * @since 5.0.0 |
| 120 | */ |
| 121 | commitMessage(): string { |
| 122 | return `${this.faker.hacker.verb()} ${this.faker.hacker.adjective()} ${this.faker.hacker.noun()}`; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Generates a date string for a git commit using the same format as `git log`. |
no test coverage detected