@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 338 B
TypeScript
export default copySymbolsIn;
/**
* Copies own and inherited symbols of `source` to `object`.
*
* @private
* @param {Object} source The object to copy symbols from.
* @param {Object} [object={}] The object to copy symbols to.
* @returns {Object} Returns `object`.
*/
declare function copySymbolsIn(source: any, object?: any): any;