Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_safeGet.js 456B

123456789101112131415161718192021
  1. /**
  2. * Gets the value at `key`, unless `key` is "__proto__" or "constructor".
  3. *
  4. * @private
  5. * @param {Object} object The object to query.
  6. * @param {string} key The key of the property to get.
  7. * @returns {*} Returns the property value.
  8. */
  9. function safeGet(object, key) {
  10. if (key === 'constructor' && typeof object[key] === 'function') {
  11. return;
  12. }
  13. if (key == '__proto__') {
  14. return;
  15. }
  16. return object[key];
  17. }
  18. module.exports = safeGet;