mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-25 20:00:40 +00:00
return boolean expression instead of using if statement
This commit is contained in:
@@ -11,10 +11,7 @@ const EPOCH = 1420070400000; // Discord's EPOCH
|
|||||||
|
|
||||||
export function isSnowflake(snowflake: string): boolean {
|
export function isSnowflake(snowflake: string): boolean {
|
||||||
const { timestamp } = deconstruct(snowflake);
|
const { timestamp } = deconstruct(snowflake);
|
||||||
if (timestamp > EPOCH && timestamp <= 3619093655551) {
|
return (timestamp > EPOCH && timestamp <= 3619093655551);
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function deconstruct(snowflake: string): DeconstructedSnowflake {
|
function deconstruct(snowflake: string): DeconstructedSnowflake {
|
||||||
|
|||||||
Reference in New Issue
Block a user