UNPKG

@dailymotion/vast-client

Version:
17 lines (15 loc) 312 B
export function createExtension() { return { name: null, value: null, attributes: {}, children: [], }; } export function isEmptyExtension(extension) { return ( extension.value === null && Object.keys(extension.attributes).length === 0 && extension.children.length === 0 ); }