Remove formatting rules incompatible with IE11

This commit is contained in:
Boris Kubiak 2018-01-08 20:31:30 +01:00
parent 7633e5c6ac
commit 109e373896
2 changed files with 16 additions and 14 deletions

View file

@ -19,7 +19,6 @@ const computeProbability = function (difficulty, attempts) {
return 1 - Math.pow((difficulty - 1) / difficulty, attempts); return 1 - Math.pow((difficulty - 1) / difficulty, attempts);
}; };
// eslint-disable-next-line no-new
new Vue({ new Vue({
el: '#app', el: '#app',
data: { data: {
@ -44,37 +43,37 @@ new Vue({
}, },
computed: { computed: {
inputError() { inputError: function () {
return !isValidHex(this.input.prefix); return !isValidHex(this.input.prefix);
}, },
difficulty() { difficulty: function () {
return this.inputError ? 'N/A' : computeDifficulty(this.input.prefix, this.input.checksum); return this.inputError ? 'N/A' : computeDifficulty(this.input.prefix, this.input.checksum);
}, },
probability() { probability: function () {
return Math.round(10000 * computeProbability(this.difficulty, this.count)) / 100; return Math.round(10000 * computeProbability(this.difficulty, this.count)) / 100;
} }
}, },
watch: { watch: {
threads() { threads: function () {
if (!this.running) { if (!this.running) {
this.initWorkers(); this.initWorkers();
} }
} }
}, },
methods: { methods: {
incrementCounter(incr) { incrementCounter: function (incr) {
this.count += incr; this.count += incr;
this.speed = incr > 0 ? Math.floor(1000 * this.count / (performance.now() - this.firstTick)) + ' addr/s' : '0 addr/s'; this.speed = incr > 0 ? Math.floor(1000 * this.count / (performance.now() - this.firstTick)) + ' addr/s' : '0 addr/s';
}, },
displayResult(result) { displayResult: function (result) {
this.incrementCounter(result.attempts); this.incrementCounter(result.attempts);
this.result.address = result.address; this.result.address = result.address;
this.result.privateKey = result.privKey; this.result.privateKey = result.privKey;
this.status = 'Address found'; this.status = 'Address found';
}, },
clearResult() { clearResult: function () {
this.result.address = ''; this.result.address = '';
this.result.privateKey = ''; this.result.privateKey = '';
}, },
@ -82,7 +81,7 @@ new Vue({
/** /**
* Create missing workers, remove the unwanted ones. * Create missing workers, remove the unwanted ones.
*/ */
initWorkers() { initWorkers: function () {
const self = this; const self = this;
if (this.workers.length === this.threads) { if (this.workers.length === this.threads) {
return; return;
@ -111,7 +110,7 @@ new Vue({
} }
}, },
parseWorkerMessage(add, w) { parseWorkerMessage: function (add, w) {
if (add !== null) { if (add !== null) {
this.stopGen(); this.stopGen();
if (add.error) { if (add.error) {
@ -127,7 +126,7 @@ new Vue({
this.workers[w].postMessage({input: this.input, step: this.step}); this.workers[w].postMessage({input: this.input, step: this.step});
}, },
startGen() { startGen: function () {
if (!window.Worker) { if (!window.Worker) {
this.error = 'workers_unsupported'; this.error = 'workers_unsupported';
return; return;
@ -145,7 +144,7 @@ new Vue({
this.firstTick = performance.now(); this.firstTick = performance.now();
}, },
stopGen() { stopGen: function () {
this.running = false; this.running = false;
this.status = 'Stopped'; this.status = 'Stopped';
for (let i = 0; i < this.workers.length; i++) { for (let i = 0; i < this.workers.length; i++) {
@ -155,7 +154,7 @@ new Vue({
this.initWorkers(); this.initWorkers();
}, },
countCores() { countCores: function () {
// Estimate number of cores on machine // Estimate number of cores on machine
let cores = 0; let cores = 0;
try { try {
@ -171,7 +170,7 @@ new Vue({
} }
}, },
created() { created: function () {
this.countCores(); this.countCores();
this.initWorkers(); this.initWorkers();
} }

View file

@ -19,6 +19,9 @@
"vinyl-source-stream": "^1.1.0", "vinyl-source-stream": "^1.1.0",
"xo": "^0.18.2" "xo": "^0.18.2"
}, },
"xo": {
"rules": {"object-shorthand": "off", "no-new": "off"}
},
"license": "ISC", "license": "ISC",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {