This file contains hidden or 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
// A list as an array of the most popular fake email domains | |
// Perfect to protect your application from spamming and free trial abuse | |
array( | |
'0-mail.com ', | |
'0815.ru ', | |
'0clickemail.com ', | |
'0wnd.net ', | |
'0wnd.org ', | |
'10minutemail.com ', | |
'20minutemail.com ', |
This file contains hidden or 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
enum EuropeanUnionCountries { | |
Austria = 'AT', | |
Belgium = 'BE', | |
Bulgaria = 'BG', | |
Croatia = 'HR', | |
Cyprus = 'CY', | |
CzechRepublic = 'CZ', | |
Denmark = 'DK', | |
Estonia = 'EE', | |
Finland = 'FI', |
This file contains hidden or 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
/* eslint-disable */ | |
interface TokenStripe { | |
id: string; | |
object: string; | |
client_ip: string; | |
created: number; | |
livemode: boolean; | |
type: string; | |
used: boolean; | |
card: { |
This file contains hidden or 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
.v-data-table { | |
@extend .elevation-0; | |
&.v-data-table--clickable-row { | |
td { | |
cursor: pointer; | |
} | |
} | |
&.v-data-table--transparent { |