JSPM

normalize-defaults

0.1.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q24657F
  • License MIT

Normalize missing first-level keys/values in an object with defaults

Package Exports

  • normalize-defaults

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (normalize-defaults) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

normalize-defaults

Normalize missing first-level keys/values in an object with those from defaults.

npm ver travis ci license

Examples

  • Example 1
var normalize = require('normalize-defaults');

var obj = { 
    rhinos: null, 
    wolves: 15,
    tigers: 42
};

var defaults = { 
    rhinos: 8,
    lions: 0,
    wolves: 14
};

normalize(obj, defaults);

console.log(obj); 
// -> { rhinos: 8, wolves: 15, tigers: 42, lions: 0 }
  • Example 2
var normalize = require('normalize-defaults');

var obj = {};
var defaults = {
    arr: []
};

normalize(obj, defaults);

console.log(obj.arr); // []
obj.arr.push(5);
console.log(obj.arr); // [5]
console.log(def.arr); // [] - defaults' objects remains unaffected

License

MIT