1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

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';
/******************************************************************************/