Every line of 'avatarurl' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
50 public get avatarURL (): string { 51 return this._avatarURL 52 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
146 get avatarURL() { 147 return this.user.avatarURL; 148 }
69 avatarUrl(size) { 70 if (this.hasCustomAvatar()) { 71 return '/gallery/avatarFor/' + this.customAvatar(); 72 } 73 return avatarProvider.avatarUrl(this.email(), size || 200); 74 }