UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

13 lines (12 loc) 340 B
/** * The base implementation of `assignIn` without support for multiple sources * or `customizer` functions. * * @private * @ignore * @param object The destination object. * @param source The source object. * @returns Returns `object`. */ declare function baseAssignIn(object: any, source: any): any; export default baseAssignIn;