-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextend.js
56 lines (46 loc) · 1.48 KB
/
extend.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
@class decal
Used by `decal.CoreObject` for inheritance and mixins.
@method extend
@private
*/
'use strict'
const isObject = require('./isObject')
const isFunction = require('./isFunction')
function isPlainObject (o) {
return isObject(o) && o.constructor === Object
}
function isArray (a) {
return Array.isArray(a)
}
module.exports = function extend (target, ...rest) {
// Handle case when target is a string or something (possible in deep copy)
if (typeof target !== 'object' && !isFunction(target)) target = {}
let i = isObject(rest[0]) ? 0 : 1
let deep = (rest[0] === true)
for (let l = rest.length; i < l; i++) {
let opts = rest[i]
let copyIsArray = false
let clone = null
// Only deal with non-null/undefined values
if (opts != null) {
// Extend the base object
for (let name in opts) {
let src = target[name]
let copy = opts[name]
// Prevent never-ending loop
if (target === copy) continue
// Recurse if we're merging plain objects or arrays
if (deep && copy && (isPlainObject(copy) || (copyIsArray = isArray(copy)))) {
if (copyIsArray) {
copyIsArray = false
clone = src && isArray(src) ? src : []
} else clone = src && isPlainObject(src) ? src : {}
// Never move original objects, clone them
target[name] = extend(clone, deep, copy)
} else if (typeof copy !== 'undefined') target[name] = copy
}
}
}
return target
}