13494: Fixes edge case on file size formatter.
[arvados-workbench2.git] / src / common / xml.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export const getTagValue = (document: Document | Element, tagName: string, defaultValue: string) => {
6     const [el] = Array.from(document.getElementsByTagName(tagName));
7     return decodeURI(el ? el.innerHTML : defaultValue);
8 };