UNPKG
node-schema
Version:
latest (2.2.0)
2.2.0
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A package for building javascript object schemas
github.com/theadam/node-schema
theadam/node-schema
node-schema
/
src
/
utils
/
get-defaults.js
6 lines
(4 loc)
•
129 B
JavaScript
View Raw
1
2
3
4
5
6
var
_ =
require
(
'lodash'
);
module
.
exports
=
function
(
options, defaults
){
return
_.
defaults
(options || {}, defaults || {}); };