Last analyzed 77277b7 5 months ago
Default analysis branch is
Currently analyzing run
Null comparisons without type-checking operators may not work as intended JS-0059
Bug risk
5 months ago5 months old
Use '===' to compare with null.
258
259
260function doAdjustment(id, title, amount, form, type){
261    if ((id==null) | (id ===""))return;262    db.collection(type).doc(id).set({
263        id: id,
264        title: title,