/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/mongo/mongo_utils.js
11 строк
428 B
Filipe Névola
Fixing tests in mongo livedata and observe changes
21 янв 2022, 20:28
21 янв 2022, 20:28
a031b77
Код
Авторство
О чём код?
export const normalizeProjection = options => { // transform fields key in projection const { fields, projection, ...otherOptions } = options || {}; // TODO: enable this comment when deprecating the fields option // Log.debug(`fields option has been deprecated, please use the new 'projection' instead`) return { ...otherOptions, ...(projection || fields ? { projection: fields || projection } : {}), }; };