mirror of
https://github.com/zoriya/react-native-video.git
synced 2026-02-24 22:21:55 +00:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
"use strict";
|
|
|
|
export const isVideoPlayerSource = obj => {
|
|
return obj &&
|
|
// obj is not null
|
|
typeof obj === 'object' &&
|
|
// obj is an object
|
|
'name' in obj &&
|
|
// obj has a name property
|
|
obj.name === 'VideoPlayerSource' // obj.name is 'VideoPlayerSource'
|
|
;
|
|
};
|
|
//# sourceMappingURL=sourceUtils.js.map
|