generated from nichoth/template-ts-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export const EM_DASH = '\u2014' | ||
export const EN_DASH = '\u2013' | ||
export const NBSP = '\u00A0' | ||
export const PETABYTE = (2 ^ 50) | ||
export const TERABYTE = (2 ^ 40) | ||
export const GIGABYTE = (2 ^ 30) | ||
export const MEGABYTE = (2 ^ 20) | ||
export const KILOBYTE = (2 ^ 10) | ||
export const PETABYTE = (2 ** 50) | ||
export const TERABYTE = (2 ** 40) | ||
export const GIGABYTE = (2 ** 30) | ||
export const MEGABYTE = (2 ** 20) | ||
export const KILOBYTE = (2 ** 10) |