1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Remove unused function

This commit is contained in:
Raymond Hill 2021-10-22 08:34:04 -04:00
parent 90fd3b6973
commit 318469b005
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -54,16 +54,6 @@ window.addEventListener('webextFlavor', function() {
/******************************************************************************/
vAPI.randomToken = function() {
const n = Math.random();
return String.fromCharCode(n * 26 + 97) +
Math.floor(
(0.25 + n * 0.75) * Number.MAX_SAFE_INTEGER
).toString(36).slice(-8);
};
/******************************************************************************/
vAPI.app = {
name: manifest.name.replace(/ dev\w+ build/, ''),
version: (( ) => {