mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
'use strict';
|
|
|
|
var assign = require('./assign')
|
|
, value = require('./valid-value');
|
|
|
|
module.exports = function (obj) {
|
|
var copy = Object(value(obj));
|
|
if (copy !== obj) return copy;
|
|
return assign({}, obj);
|
|
};
|