MCPcopy Create free account
hub / github.com/MALSync/MALSync / alternativeTitle

Method alternativeTitle

src/_provider/Kitsu/metaOverview.ts:128–142  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

126 }
127
128 private alternativeTitle() {
129 for (const prop in this.animeI().attributes.abbreviatedTitles) {
130 const el = this.animeI().attributes.abbreviatedTitles[prop];
131 if (el !== this.meta.title && el) {
132 this.meta.alternativeTitle.push(el);
133 }
134 }
135
136 for (const prop in this.animeI().attributes.titles) {
137 const el = this.animeI().attributes.titles[prop];
138 if (el !== this.meta.title && el) {
139 this.meta.alternativeTitle.push(el);
140 }
141 }
142 }
143
144 private characters() {
145 if (this.animeInfo.included && this.animeInfo.included.length) {

Callers 1

_initMethod · 0.95

Calls 1

animeIMethod · 0.95

Tested by

no test coverage detected