Fix "invalid token" exception in Safari

Seems like in older versions the const keyword doesn't play well with the "use strict" directive
This commit is contained in:
Deathamns 2014-10-19 17:10:31 +02:00
parent 1a83d1a753
commit 775f51a04b

View file

@ -21,7 +21,9 @@
/* jshint bitwise: false */
/* global µBlock */
'use strict';
// Older Safari throws an exception for const when it's used with 'use strict'.
// 'use strict';
/******************************************************************************/