File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ export class Address {
291
291
* @method faker.address.state
292
292
* @param useAbbr
293
293
*/
294
- // TODO christopher 2022-01-13: useAbbr not in use
294
+ // TODO @Shinigami 92 2022-01-13: useAbbr not in use
295
295
state ( useAbbr ?: boolean ) : string {
296
296
return this . faker . random . arrayElement ( this . faker . definitions . address . state ) ;
297
297
}
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export class Helpers {
305
305
const re = new RegExp ( '{{' + p + '}}' , 'g' ) ;
306
306
str = str . replace (
307
307
re ,
308
- // TODO christopher 2022-01-14: Try to improve the type or maybe use `if`
308
+ // TODO @Shinigami 92 2022-01-14: Try to improve the type or maybe use `if`
309
309
// @ts -expect-error
310
310
data [ p ]
311
311
) ;
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ export class Internet {
490
490
* Copyright(c) 2011-2013 Bermi Ferrer <[email protected] >
491
491
* MIT Licensed
492
492
*/
493
- // TODO christopher 2022-01-11: letter is not used
493
+ // TODO @Shinigami 92 2022-01-11: letter is not used
494
494
let letter = / [ a - z A - Z ] $ / ;
495
495
let vowel = / [ a e i o u A E I O U ] $ / ;
496
496
let consonant = / [ b c d f g h j k l m n p q r s t v w x y z B C D F G H J K L M N P Q R S T V W X Y Z ] $ / ;
You can’t perform that action at this time.
0 commit comments