2019-11-18 11:38:43 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2020-02-14 15:35:10 +00:00
|
|
|
/**
|
|
|
|
* MetaUtils extracting content from meta.
|
|
|
|
*/
|
2019-11-18 11:38:43 +00:00
|
|
|
export class MetaUtils {
|
|
|
|
public static getMetaContent(metaName: string): string {
|
|
|
|
const meta = document.querySelector(`meta[name='${metaName}']`);
|
|
|
|
|
|
|
|
if (meta) {
|
|
|
|
return meta.getAttribute('content') as string;
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|