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.

index.js 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*!
  2. * set-value <https://github.com/jonschlinkert/set-value>
  3. *
  4. * Copyright (c) 2014-2015, 2017, Jon Schlinkert.
  5. * Released under the MIT License.
  6. */
  7. 'use strict';
  8. var split = require('split-string');
  9. var extend = require('extend-shallow');
  10. var isPlainObject = require('is-plain-object');
  11. var isObject = require('is-extendable');
  12. module.exports = function(obj, prop, val) {
  13. if (!isObject(obj)) {
  14. return obj;
  15. }
  16. if (Array.isArray(prop)) {
  17. prop = [].concat.apply([], prop).join('.');
  18. }
  19. if (typeof prop !== 'string') {
  20. return obj;
  21. }
  22. var keys = split(prop, {sep: '.', brackets: true}).filter(isValidKey);
  23. var len = keys.length;
  24. var idx = -1;
  25. var current = obj;
  26. while (++idx < len) {
  27. var key = keys[idx];
  28. if (idx !== len - 1) {
  29. if (!isObject(current[key])) {
  30. current[key] = {};
  31. }
  32. current = current[key];
  33. continue;
  34. }
  35. if (isPlainObject(current[key]) && isPlainObject(val)) {
  36. current[key] = extend({}, current[key], val);
  37. } else {
  38. current[key] = val;
  39. }
  40. }
  41. return obj;
  42. };
  43. function isValidKey(key) {
  44. return key !== '__proto__' && key !== 'constructor' && key !== 'prototype';
  45. }