()
| 494 | static isLadder (level) { return (level.type != null ? level.type.indexOf('ladder') : undefined) > -1 } |
| 495 | |
| 496 | isProject () { return Level.isProject(this.attributes) } |
| 497 | |
| 498 | isType (...types) { |
| 499 | return Array.from(types).includes(this.get('type', true)) |
no outgoing calls
no test coverage detected