add()

in src/utils/SimpleSet.js [11:14]


  add(k) {
    if (this.has(k)) return;
    this.v.push(k);
  }