mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-05-10 13:14:13 +08:00
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
function resolveAssetSource(source) {
|
|
return ((typeof source === 'object') ? source.uri : source) || null;
|
|
}
|
|
|
|
module.exports = resolveAssetSource;
|