Skip to content

Commit 77f2237

Browse files
style: new line between functions
Co-authored-by: Mads Røskar <[email protected]>
1 parent 58022fc commit 77f2237

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

package/src/utils/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,7 @@ export const getUrlWithoutParams = (url?: string) => {
543543

544544
return url.substring(0, url.indexOf('?'));
545545
};
546+
546547
export const vw = (percentageWidth: number, rounded = false) => {
547548
const value = Dimensions.get('window').width * (percentageWidth / 100);
548549
return rounded ? Math.round(value) : value;

0 commit comments

Comments
 (0)