[jQuery] data object not included in clone?

[jQuery] data object not included in clone?


When cloning and element, you can pass a boolean value of true to copy
event handlers... what about the data object from jQuery?
console.log($('<div/>').data('foo', 'bar').clone(true).data('foo')); --