aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/address.ts2
-rw-r--r--src/helpers.ts2
-rw-r--r--src/internet.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/address.ts b/src/address.ts
index 540da206..d7e878ce 100644
--- a/src/address.ts
+++ b/src/address.ts
@@ -291,7 +291,7 @@ export class Address {
* @method faker.address.state
* @param useAbbr
*/
- // TODO christopher 2022-01-13: useAbbr not in use
+ // TODO @Shinigami92 2022-01-13: useAbbr not in use
state(useAbbr?: boolean): string {
return this.faker.random.arrayElement(this.faker.definitions.address.state);
}
diff --git a/src/helpers.ts b/src/helpers.ts
index a8137800..2c83a96e 100644
--- a/src/helpers.ts
+++ b/src/helpers.ts
@@ -305,7 +305,7 @@ export class Helpers {
const re = new RegExp('{{' + p + '}}', 'g');
str = str.replace(
re,
- // TODO christopher 2022-01-14: Try to improve the type or maybe use `if`
+ // TODO @Shinigami92 2022-01-14: Try to improve the type or maybe use `if`
// @ts-expect-error
data[p]
);
diff --git a/src/internet.ts b/src/internet.ts
index 3b7f0291..30331234 100644
--- a/src/internet.ts
+++ b/src/internet.ts
@@ -490,7 +490,7 @@ export class Internet {
* Copyright(c) 2011-2013 Bermi Ferrer <[email protected]>
* MIT Licensed
*/
- // TODO christopher 2022-01-11: letter is not used
+ // TODO @Shinigami92 2022-01-11: letter is not used
let letter = /[a-zA-Z]$/;
let vowel = /[aeiouAEIOU]$/;
let consonant = /[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]$/;