MCPcopy
hub / github.com/webpack/webpack / orderedOwnedExports

Method orderedOwnedExports

lib/ExportsInfo.js:193–198  ·  view source on GitHub ↗

* Gets ordered owned exports. * @returns {Iterable<ExportInfo>} all owned exports in order

()

Source from the content-addressed store, hash-verified

191 * @returns {Iterable<ExportInfo>} all owned exports in order
192 */
193 get orderedOwnedExports() {
194 if (!this._exportsAreOrdered) {
195 this._sortExports();
196 }
197 return this._exports.values();
198 }
199
200 /**
201 * Returns all exports in any order.

Callers

nothing calls this directly

Calls 2

_sortExportsMethod · 0.95
valuesMethod · 0.45

Tested by

no test coverage detected