()
| 1386 | } |
| 1387 | |
| 1388 | static fetchI18nBundles() { |
| 1389 | return Promise.all(Object.entries(this.getMetadata().getI18n()).map(pair => { |
| 1390 | const { bundleName } = pair[1]; |
| 1391 | return getI18nBundle(bundleName); |
| 1392 | })); |
| 1393 | } |
| 1394 | |
| 1395 | static fetchCLDR() { |
| 1396 | if (this.getMetadata().needsCLDR()) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…