(s)
| 31483 | return { fn: this.system.fn } |
| 31484 | } |
| 31485 | getComponents(s) { |
| 31486 | const o = this.system.components[s] |
| 31487 | return Array.isArray(o) |
| 31488 | ? o.reduce((s, o) => o(s, this.getSystem())) |
| 31489 | : void 0 !== s |
| 31490 | ? this.system.components[s] |
| 31491 | : this.system.components |
| 31492 | } |
| 31493 | getBoundSelectors(s, o) { |
| 31494 | return objMap(this.getSelectors(), (i, a) => { |
| 31495 | let u = [a.slice(0, -9)] |
no test coverage detected