MCPcopy Create free account
hub / github.com/TruthHun/BookStack / Set

Function Set

static/vuejs/vue.js:534–536  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

532 // a non-standard Set polyfill that only works with primitive keys.
533 _Set = (function () {
534 function Set () {
535 this.set = Object.create(null);
536 }
537 Set.prototype.has = function has (key) {
538 return this.set[key] === true
539 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected