Use const

This commit is contained in:
Jessica Lord 2016-01-14 14:11:50 -08:00
parent 1779701445
commit ab8908a4af
7 changed files with 29 additions and 49 deletions

View file

@ -1,8 +1,5 @@
var chrome, url;
url = require('url');
chrome = window.chrome = window.chrome || {};
const url = require('url');
const chrome = window.chrome = window.chrome || {};
chrome.extension = {
getURL: function(path) {