um/network_report_server/commit/30f7226d9aa1b14561d48e5309f57e811e38322f">30f7226d9a first commit лет назад: 2 strip-ansi 30f7226d9a first commit лет назад: 2 sucrase 30f7226d9a first commit лет назад: 2 supports-preserve-symlinks-flag 30f7226d9a first commit лет назад: 2 tailwind-color-palette 30f7226d9a first commit лет назад: 2 tailwindcss 30f7226d9a first commit лет назад: 2 thenify 30f7226d9a first commit лет назад: 2 thenify-all 30f7226d9a first commit лет назад: 2 to-regex-range 30f7226d9a first commit лет назад: 2 tr46 30f7226d9a first commit лет назад: 2 ts-interface-checker 30f7226d9a first commit лет назад: 2 uglify-js 30f7226d9a first commit лет назад: 2 underscore 30f7226d9a first commit лет назад: 2 upper-case 30f7226d9a first commit лет назад: 2 util-deprecate 30f7226d9a first commit лет назад: 2 valid-data-url 30f7226d9a first commit лет назад: 2 web-resource-inliner 30f7226d9a first commit лет назад: 2 webidl-conversions 30f7226d9a first commit лет назад: 2 whatwg-url 30f7226d9a first commit лет назад: 2 wrap-ansi 30f7226d9a first commit лет назад: 2 wrappy 30f7226d9a first commit лет назад: 2 y18n 30f7226d9a first commit лет назад: 2 yallist 30f7226d9a first commit лет назад: 2 yaml 30f7226d9a first commit лет назад: 2 yargs 30f7226d9a first commit лет назад: 2 yargs-parser 30f7226d9a first commit лет назад: 2 .yarn-integrity 30f7226d9a first commit лет назад: 2 tum/network_report_server - Gogs: Simplico Git Service

Keine Beschreibung

_customOmitClone.js 475B

1234567891011121314151617
  1. var isPlainObject = require('./isPlainObject');
  2. /**
  3. * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
  4. * objects.
  5. *
  6. * @private
  7. * @param {*} value The value to inspect.
  8. * @param {string} key The key of the property to inspect.
  9. * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
  10. */
  11. function customOmitClone(value) {
  12. return isPlainObject(value) ? undefined : value;
  13. }
  14. module.exports = customOmitClone;