MCPcopy
hub / github.com/HumanSignal/label-studio / Set

Function Set

docs/themes/htx/source/js/vue.js:568–570  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

566 // a non-standard Set polyfill that only works with primitive keys.
567 _Set = (function() {
568 function Set() {
569 this.set = Object.create(null);
570 }
571 Set.prototype.has = function has(key) {
572 return this.set[key] === true;
573 };

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected