 Issue 29374674:
  Issue 4864 - Start using ESLint for adblockpluschrome  (Closed)
    
  
    Issue 29374674:
  Issue 4864 - Start using ESLint for adblockpluschrome  (Closed) 
  | Index: lib/tldjs.js | 
| diff --git a/lib/tldjs.js b/lib/tldjs.js | 
| index 95349c66a503062520d42e371306b9c12140dd91..b93f5a311806939f4a43b1b92e05b9e8a36e073c 100644 | 
| --- a/lib/tldjs.js | 
| +++ b/lib/tldjs.js | 
| @@ -15,11 +15,12 @@ | 
| * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| */ | 
| +/* global publicSuffixes */ | 
| + | 
| /** @module tldjs */ | 
| "use strict"; | 
| -let getDomain = | 
| /** | 
| * Get the base domain for given hostname. | 
| * | 
| @@ -46,4 +47,4 @@ exports.getDomain = hostname => | 
| return hostname; | 
| return bits.slice(cutoff).join("."); | 
| -} | 
| +}; |