From: Steinar H. Gunderson Date: Sun, 20 Nov 2016 21:33:47 +0000 (+0100) Subject: Use the non-minified chess.js; it is easier to profile. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=19afd6bdb8c2d498dd9dd5887ea33c33185443a5 Use the non-minified chess.js; it is easier to profile. --- diff --git a/server/hash-lookup.js b/server/hash-lookup.js index 032b87b..dd0b0c3 100644 --- a/server/hash-lookup.js +++ b/server/hash-lookup.js @@ -1,5 +1,5 @@ var grpc = require('grpc'); -var Chess = require('../www/js/chess.min.js').Chess; +var Chess = require('../www/js/chess.js').Chess; var PROTO_PATH = __dirname + '/hashprobe.proto'; var hashprobe_proto = grpc.load(PROTO_PATH).hashprobe;