UNPKG

expo-libvlc-player

Version:
11 lines 308 B
export function convertNativeProps(props) { const nativeProps = {}; if (!props || typeof props !== "object") { return nativeProps; } for (const [key, value] of Object.entries(props)) { nativeProps[key] = value; } return nativeProps; } //# sourceMappingURL=props.js.map