underscore-es
Version:
javaScript's functional programming helper library for ES6 and beyond.
10 lines (7 loc) • 295 B
JavaScript
// `_extend` : an object's function
// ---------------------------------
import _allKeys from './allKeys';
import {createAssigner} from './_internal';
// Extend a given object with all the properties in passed-in object(s).
var _extend = createAssigner(_allKeys);
export {_extend as default};