clone
clone copied to clipboard
Support for ES6 modules
Just a thought, support for ES6 modules could be added by adding one line to the last if
block of clone.js
like so:
if (typeof module === 'object' && module.exports) {
module.exports = clone;
module.exports.default = clone;
}