From 2649242178d1823d56fac3c0652e77a10103cddf Mon Sep 17 00:00:00 2001 From: Hampton Maxwell Date: Fri, 22 Jun 2018 18:46:48 -0700 Subject: [PATCH] Remove duplicate outdated stringsOnlyObject implementation --- Video.js | 10 ---------- 1 file changed, 10 deletions(-) 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 }); };