Sometimes I want to put the object under a key based on something in the object. ```js transmute({ name: 'testing' }) .under(({ name }) => name)) .then(console.log) /* Outputs: { testing: { name: 'testing' } } */ ```