Moving settings to be user specific, adding playbackRate setting, update playbackRate picker to go up to 3x

This commit is contained in:
Mark Cooper 2021-08-23 18:31:04 -05:00
parent 2548aba840
commit f83c5dd440
22 changed files with 247 additions and 103 deletions

View file

@ -40,4 +40,8 @@ const cleanString = (str) => {
}
return cleaned
}
module.exports.cleanString = cleanString
module.exports.cleanString = cleanString
module.exports.isObject = (val) => {
return val !== null && typeof val === 'object'
}