Könnte so gemacht werden:-
function( name, callback ) {
Catalog
.find({ "thing.name": { $regex: name, $options: "i" }})
.exec(callback);
}
Könnte so gemacht werden:-
function( name, callback ) {
Catalog
.find({ "thing.name": { $regex: name, $options: "i" }})
.exec(callback);
}