12345678910111213141516171819202122232425 |
- // node_modules/@arcgis/core/layers/ogc/xmlUtils.js
- function o(n2, c) {
- for (const e of n2.children)
- if (e.localName in c) {
- const n3 = c[e.localName];
- if (typeof n3 == "function") {
- const c2 = n3(e);
- c2 && o(e, c2);
- } else
- o(e, n3);
- }
- }
- function* n(o2, c) {
- for (const e of o2.children)
- if (e.localName in c) {
- const o3 = c[e.localName];
- typeof o3 == "function" ? yield o3(e) : yield* n(e, o3);
- }
- }
- export {
- o,
- n
- };
- //# sourceMappingURL=chunk-FEH5F4VW.js.map
|