diff --git a/Video.js b/Video.js index d0ef212b..f8677bad 100644 --- a/Video.js +++ b/Video.js @@ -47,16 +47,6 @@ export default class Video extends Component { return strObj; } - stringsOnlyObject(obj) { - const strObj = {}; - - Object.keys(obj).forEach(x => { - strObj[x] = obj[x].toString(); - }); - - return strObj; - } - seek = (time) => { this.setNativeProps({ seek: time }); };