Your IP : 216.73.216.220


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/mongoose/lib/helpers/query/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/mongoose/lib/helpers/query/trusted.js

'use strict';

const trustedSymbol = Symbol('mongoose#trustedSymbol');

exports.trustedSymbol = trustedSymbol;

exports.trusted = function trusted(obj) {
  if (obj == null || typeof obj !== 'object') {
    return obj;
  }
  obj[trustedSymbol] = true;
  return obj;
};