(obj)
| 658 | |
| 659 | // Create a (shallow-cloned) duplicate of an object. |
| 660 | function clone(obj) { |
| 661 | if (!isObject(obj)) return obj; |
| 662 | return isArray(obj) ? obj.slice() : extend({}, obj); |
| 663 | } |
| 664 | |
| 665 | // Invokes `interceptor` with the `obj` and then returns `obj`. |
| 666 | // The primary purpose of this method is to "tap into" a method chain, in |
nothing calls this directly
no test coverage detected
searching dependent graphs…