Remove duplicate outdated stringsOnlyObject implementation

This commit is contained in:
Hampton Maxwell
2018-06-22 18:46:48 -07:00
committed by GitHub
parent 6cd7dfeedf
commit 2649242178

View File

@@ -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 });
};