From a895ae564541dc72ffa8c2d1620bcf838be23dd3 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Tue, 25 Jan 2022 19:16:05 +0100 Subject: chore: change TODO owner name (#284) --- src/address.ts | 2 +- src/helpers.ts | 2 +- src/internet.ts | 2 +- 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 * 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]$/; -- cgit v1.2.3