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

Function Set

static/vuejs/vue.runtime.esm.js:524–526  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

522 // a non-standard Set polyfill that only works with primitive keys.
523 _Set = (function () {
524 function Set () {
525 this.set = Object.create(null);
526 }
527 Set.prototype.has = function has (key) {
528 return this.set[key] === true
529 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected