{"version":3,"file":"commons-app-queue.js.899cc85687712f9cd0f4.js","mappings":"2GAAA,IAAIA,EAAQ,WACVC,KAAKC,KAAO,KACZD,KAAKE,KAAO,IACd,EAEAH,EAAMI,UAAY,CAChBC,IAAK,SAAUC,GACb,IAAIC,EAAQ,CAAED,KAAMA,EAAME,KAAM,MAC5BP,KAAKC,KAAMD,KAAKE,KAAKK,KAAOD,EAC3BN,KAAKC,KAAOK,EACjBN,KAAKE,KAAOI,CACd,EACAE,IAAK,WACH,IAAIF,EAAQN,KAAKC,KACjB,GAAIK,EAGF,OAFAN,KAAKC,KAAOK,EAAMC,KACdP,KAAKE,OAASI,IAAON,KAAKE,KAAO,MAC9BI,EAAMD,IAEjB,GAGFI,EAAOC,QAAUX,C","sources":["webpack://grfanclub-webview/./node_modules/core-js/internals/queue.js"],"sourcesContent":["var Queue = function () {\n this.head = null;\n this.tail = null;\n};\n\nQueue.prototype = {\n add: function (item) {\n var entry = { item: item, next: null };\n if (this.head) this.tail.next = entry;\n else this.head = entry;\n this.tail = entry;\n },\n get: function () {\n var entry = this.head;\n if (entry) {\n this.head = entry.next;\n if (this.tail === entry) this.tail = null;\n return entry.item;\n }\n }\n};\n\nmodule.exports = Queue;\n"],"names":["Queue","this","head","tail","prototype","add","item","entry","next","get","module","exports"],"sourceRoot":""}