UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

10 lines (9 loc) 227 B
export function mapClone( object, callback ) { const clone = {}; for ( const key in object ) { if ( hasOwnProperty( object, key ) ) { clone[ key ] = callback( object[ key ] ); } } return clone; }