var ASYNC = function() {
function e() {
console.log('1')
}
}();
!function() {
function i() {
console.log('2')
}
}
text: { type: String}
schema.index({text: 'text'})
Collection.aggregate([
{
$match: { '$text': { '$search': 'тег1' } },
},
{ $lookup: { from: 'users', localField: 'owner', foreignField: '_id', as: 'owner' } },
{
$project: {
_id: 1,
/****/
score: { $meta: "textScore" }
}
},
{ $sort: { score: 1 }},
{ $skip: request.skip },
{ $limit: 20 },
{
$group: {
_id: "$_id",
/*****/
}
}
]).then()
setTimeout(function(){
alert(document.querySelector('#sss').value)
}, 2000) // через 2 секунды выполнится этот код