git ssb

0+

wanderer🌟 / bls-lib



Commit 786bbae243555dcf10819e786d535cd40788c12b

fix comparision by lint

MITSUNARI Shigeo committed on 12/10/2017, 10:00:18 PM
Parent: 3d52efba82dc8e52ef966e62ee1ec48142553bce

Files changed

index.jschanged
index.jsView
@@ -339,9 +339,9 @@
339339 const pos = mod._malloc(buf.length)
340340 mod.HEAP8.set(buf, pos)
341341 const r = func(p, pos, buf.length)
342342 mod._free(pos)
343- if (r == 0) {
343 + if (r === 0) {
344344 throw new Error('Deserialize err')
345345 }
346346 }
347347 }

Built with git-ssb-web