Package Exports
- own-or
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 (own-or) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
own-or
Either use the object's own property, or a fallback
Useful for setting default values.
API
ownOr(object, key, fallback)
USAGE
var ownOr = require('own-or')
var config = { some: 'configs' }
var foo = ownOr(config, 'bar', 'baz') // 'baz'
var some = ownOr(config, 'some', 'quux') // 'configs'