Remove needless async/await

This commit is contained in:
syuilo 2018-10-31 11:22:49 +09:00
parent 26c9d8ff6f
commit 29b000e03c
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
6 changed files with 12 additions and 12 deletions

View file

@ -17,11 +17,11 @@ export type IBlocking = {
blockerId: mongo.ObjectID;
};
export const packMany = async (
export const packMany = (
blockings: (string | mongo.ObjectID | IBlocking)[],
me?: string | mongo.ObjectID | IUser
) => {
return (await Promise.all(blockings.map(x => pack(x, me))));
return Promise.all(blockings.map(x => pack(x, me)));
};
export const pack = (

View file

@ -73,13 +73,13 @@ export function validateFileName(name: string): boolean {
);
}
export const packMany = async (
export const packMany = (
files: any[],
options?: {
detail: boolean
}
) => {
return (await Promise.all(files.map(f => pack(f, options))));
return Promise.all(files.map(f => pack(f, options)));
};
/**

View file

@ -16,11 +16,11 @@ export type IFavorite = {
noteId: mongo.ObjectID;
};
export const packMany = async (
export const packMany = (
favorites: any[],
me: any
) => {
return (await Promise.all(favorites.map(f => pack(f, me))));
return Promise.all(favorites.map(f => pack(f, me)));
};
/**

View file

@ -17,11 +17,11 @@ export interface IMute {
muteeId: mongo.ObjectID;
}
export const packMany = async (
export const packMany = (
mutes: (string | mongo.ObjectID | IMute)[],
me?: string | mongo.ObjectID | IUser
) => {
return (await Promise.all(mutes.map(x => pack(x, me))));
return Promise.all(mutes.map(x => pack(x, me)));
};
export const pack = (

View file

@ -164,7 +164,7 @@ export const hideNote = async (packedNote: any, meId: mongo.ObjectID) => {
}
};
export const packMany = async (
export const packMany = (
notes: (string | mongo.ObjectID | INote)[],
me?: string | mongo.ObjectID | IUser,
options?: {
@ -172,7 +172,7 @@ export const packMany = async (
skipHide?: boolean;
}
) => {
return (await Promise.all(notes.map(n => pack(n, me, options))));
return Promise.all(notes.map(n => pack(n, me, options)));
};
/**

View file

@ -51,10 +51,10 @@ export interface INotification {
isRead: Boolean;
}
export const packMany = async (
export const packMany = (
notifications: any[]
) => {
return (await Promise.all(notifications.map(n => pack(n))));
return Promise.all(notifications.map(n => pack(n)));
};
/**