(file)
| 5422 | * @param {string} file file |
| 5423 | */ |
| 5424 | const checkUsedAndDelete = (file) => { |
| 5425 | if (!this._assetsRelatedIn.has(file)) { |
| 5426 | this.deleteAsset(file); |
| 5427 | } |
| 5428 | }; |
| 5429 | const items = related[key]; |
| 5430 | if (Array.isArray(items)) { |
| 5431 | for (const file of items) { |
nothing calls this directly
no test coverage detected