add()
in
src/utils/SimpleSet.js [11:14]
4
lines of code
2
McCabe index (conditional complexity)
add(k) { if (this.has(k)) return; this.v.push(k); }