UNPKG

tastypie

Version:

Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces

22 lines (17 loc) 512 B
var forEach = require('../array/forEach'); var slice = require('../array/slice'); var forOwn = require('./forOwn'); /** * Copy missing properties in the obj from the defaults. */ function fillIn(obj, var_defaults){ forEach(slice(arguments, 1), function(base){ forOwn(base, function(val, key){ if (obj[key] == null) { obj[key] = val; } }); }); return obj; } module.exports = fillIn;