]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/root-helpers/local-storage-utils.ts
Fix table pagination responsive
[github/Chocobozzz/PeerTube.git] / client / src / root-helpers / local-storage-utils.ts
1 function getBoolOrDefault (value: string, defaultValue: boolean) {
2 if (value === 'true') return true
3 if (value === 'false') return false
4
5 return defaultValue
6 }
7
8 export {
9 getBoolOrDefault
10 }