forked from naskya/firefish
refactor (backend): change !== null
to != null
#16
Loading…
Reference in a new issue
No description provided.
Delete branch "refactor/not-null"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
x != null
はx != null && x != undefined
に相当しますが、確認したところ backend では!== null
のところは意図的にundefined
を特別扱いしたいわけではないことを確認したので、安全なために!= null
に変更しました。!== null
to!= null
2cec30fd45