1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Prettier 💎 (#1737)

* Add prettier

* Apply Prettier
This commit is contained in:
Paulus Schoutsen
2018-10-11 12:22:11 +02:00
committed by GitHub
parent 3b425c3e14
commit 34bfc12647
472 changed files with 12402 additions and 9875 deletions

View File

@@ -8,7 +8,7 @@ export default function parseAspectRatio(input) {
}
try {
if (input) {
const arr = input.replace(':', 'x').split('x');
const arr = input.replace(":", "x").split("x");
if (arr.length === 0) {
return null;
}