REGINA DE OLIVEIRA HEIDRICH
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
| /** | |
| * Flat an object | |
| * @param {object} obj | |
| * @param {string|undefined} prevProp | |
| * @returns {object} flatted | |
| */ | |
| function flatObject(obj, prevProp) { | |
| if (typeof obj !== 'object') { | |
| throw new Error('obj must be an object') | |
| } |
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
| { | |
| "workbench.colorTheme": "Default Light+", | |
| "workbench.colorCustomizations": { | |
| "[Default Light+]": { | |
| "gitDecoration.ignoredResourceForeground": "#666", | |
| "sideBar.background": "#f5f5f5", | |
| "sideBar.border": "#cccedb", | |
| "sideBar.foreground": "#000000", | |
| "sideBarSectionHeader.background": "#007acc", | |
| "sideBarSectionHeader.border": "#00000000", |
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 Service<T extends any>(module: NodeModule, clazz: T) { | |
| module.exports[(<T>clazz).name] = new clazz() | |
| return function (_constructor: any) { } | |
| } | |
| @Service<LoremService>(module, LoremService) | |
| class LoremService { | |
| } |
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
| var SEPARATOR = "; "; | |
| function onEdit(event) { | |
| try { | |
| checkMultipleComboBoxEvent(event); | |
| } catch (ex) { | |
| Logger.log("There are some problem to edit"); | |
| Logger.log(ex); | |
| } | |
| } |