(this: Loader, content: string)
| 10 | const _htmlSymbol = Symbol("HTML dependencies"); |
| 11 | |
| 12 | function loader(this: Loader, content: string) { |
| 13 | this.cacheable && this.cacheable(); |
| 14 | this._module[_htmlSymbol] = loader.modules(content); |
| 15 | |
| 16 | return content; |
| 17 | } |
| 18 | |
| 19 | namespace loader { |
| 20 | export const htmlSymbol = _htmlSymbol; |
nothing calls this directly
no test coverage detected
searching dependent graphs…