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

Function Set

static/vuejs/vue.common.js:530–532  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected