mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat: add background video preset (#607)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
export function namedNodeMapToObject(namedNodeMap: NamedNodeMap) {
|
||||
const obj: Record<string, string> = {};
|
||||
for (const attr of namedNodeMap) {
|
||||
obj[attr.name] = attr.value;
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
export { animationFrame } from './animation-frame';
|
||||
export { namedNodeMapToObject } from './attributes';
|
||||
export { isRTL } from './direction';
|
||||
export { type OnEventOptions, onEvent } from './event';
|
||||
export { idleCallback } from './idle-callback';
|
||||
|
||||
Reference in New Issue
Block a user