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

Function Set

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected