We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0976a4f commit 8a14b1cCopy full SHA for 8a14b1c
1 file changed
src/models/metadata.ts
@@ -241,6 +241,12 @@ export class Metadata {
241
: undefined;
242
}
243
244
+ @Memoize() get licenseurl(): StringField | undefined {
245
+ return this.rawMetadata.licenseurl != null
246
+ ? new StringField(this.rawMetadata.licenseurl)
247
+ : undefined;
248
+ }
249
+
250
@Memoize() get lineage(): StringField | undefined {
251
return this.rawMetadata.lineage != null
252
? new StringField(this.rawMetadata.lineage)
0 commit comments