Fix indent
This commit is contained in:
parent
fe00cb9ad5
commit
a48e503caa
1 changed files with 16 additions and 16 deletions
|
@ -54,25 +54,25 @@ export const meta = {
|
|||
};
|
||||
|
||||
const state: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
'admin': { isAdmin: true },
|
||||
'moderator': { isModerator: true },
|
||||
'adminOrModerator': {
|
||||
$or: [
|
||||
{ isAdmin: true },
|
||||
{ isModerator: true }
|
||||
]
|
||||
},
|
||||
'verified': { isVerified: true },
|
||||
'alive': {
|
||||
updatedAt: { $gt: new Date(Date.now() - 1000 * 60 * 60 * 24 * 5) }
|
||||
},
|
||||
[fallback]: {}
|
||||
'admin': { isAdmin: true },
|
||||
'moderator': { isModerator: true },
|
||||
'adminOrModerator': {
|
||||
$or: [
|
||||
{ isAdmin: true },
|
||||
{ isModerator: true }
|
||||
]
|
||||
},
|
||||
'verified': { isVerified: true },
|
||||
'alive': {
|
||||
updatedAt: { $gt: new Date(Date.now() - 1000 * 60 * 60 * 24 * 5) }
|
||||
},
|
||||
[fallback]: {}
|
||||
};
|
||||
|
||||
const origin: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
'local': { host: null },
|
||||
'remote': { host: nonnull },
|
||||
[fallback]: {}
|
||||
'local': { host: null },
|
||||
'remote': { host: nonnull },
|
||||
[fallback]: {}
|
||||
};
|
||||
|
||||
const sort: any = { // < https://github.com/Microsoft/TypeScript/issues/1863
|
||||
|
|
Loading…
Reference in a new issue