This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @function | |
* @description Deep clone a class instance. | |
* @param {object} instance The class instance you want to clone. | |
* @returns {object} A new cloned instance. | |
*/ | |
function clone(instance) { | |
return Object.assign( | |
Object.create( | |
// Set the prototype of the new object to the prototype of the instance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"added_words": | |
[ | |
"truthy" | |
], | |
"color_scheme": "Packages/Boxy Theme/schemes/Boxy Yesterday.tmTheme", | |
"draw_indent_guides": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 12, | |
"ignored_packages": |