* Returns pack. * @returns {Promise<Pack>} pack
()
| 1214 | * @returns {Promise<Pack>} pack |
| 1215 | */ |
| 1216 | _getPack() { |
| 1217 | if (this.packPromise === undefined) { |
| 1218 | this.packPromise = this.storePromise.then(() => this._openPack()); |
| 1219 | } |
| 1220 | return this.packPromise; |
| 1221 | } |
| 1222 | |
| 1223 | /** |
| 1224 | * Returns the pack. |