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

Function Set

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected