Skip to content

Commit a895ae5

Browse files
authored
chore: change TODO owner name (#284)
1 parent b258f4f commit a895ae5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/address.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export class Address {
291291
* @method faker.address.state
292292
* @param useAbbr
293293
*/
294-
// TODO christopher 2022-01-13: useAbbr not in use
294+
// TODO @Shinigami92 2022-01-13: useAbbr not in use
295295
state(useAbbr?: boolean): string {
296296
return this.faker.random.arrayElement(this.faker.definitions.address.state);
297297
}

src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export class Helpers {
305305
const re = new RegExp('{{' + p + '}}', 'g');
306306
str = str.replace(
307307
re,
308-
// TODO christopher 2022-01-14: Try to improve the type or maybe use `if`
308+
// TODO @Shinigami92 2022-01-14: Try to improve the type or maybe use `if`
309309
// @ts-expect-error
310310
data[p]
311311
);

src/internet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ export class Internet {
490490
* Copyright(c) 2011-2013 Bermi Ferrer <[email protected]>
491491
* MIT Licensed
492492
*/
493-
// TODO christopher 2022-01-11: letter is not used
493+
// TODO @Shinigami92 2022-01-11: letter is not used
494494
let letter = /[a-zA-Z]$/;
495495
let vowel = /[aeiouAEIOU]$/;
496496
let consonant = /[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]$/;

0 commit comments

Comments
 (0)