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
| async function getFirstPostTitle() { | |
| let posts = await getPosts(); | |
| return posts[0].title; | |
| } |
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 getFirstPostTitle() { | |
| return getPosts().then(function(posts) { | |
| return posts[0].title; | |
| }); | |
| } |
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
| --compilation_level=ADVANCED_OPTIMIZATIONS | |
| --language_out=ES5 | |
| --variable_renaming_report=closure/variable_renaming_report | |
| --property_renaming_report=closure/property_renaming_report | |
| --create_source_map=%outname%.map | |
| --warning_level=QUIET | |
| --dependency_mode=STRICT | |
| --rewrite_polyfills=false | |
| --module_resolution=node |
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
| --compilation_level=ADVANCED_OPTIMIZATIONS | |
| --language_out=ES5 | |
| --variable_renaming_report=closure/variable_renaming_report | |
| --property_renaming_report=closure/property_renaming_report | |
| --create_source_map=%outname%.map | |
| --warning_level=QUIET | |
| --dependency_mode=STRICT | |
| --rewrite_polyfills=false | |
| --module_resolution=node |
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
| --compilation_level=ADVANCED_OPTIMIZATIONS | |
| --language_out=ES5 | |
| --variable_renaming_report=closure/variable_renaming_report | |
| --property_renaming_report=closure/property_renaming_report | |
| --create_source_map=%outname%.map | |
| --warning_level=QUIET | |
| --dependency_mode=STRICT | |
| --rewrite_polyfills=false | |
| --module_resolution=NODE |
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
| --compilation_level=ADVANCED_OPTIMIZATIONS | |
| --language_out=ES5 | |
| --variable_renaming_report=closure/variable_renaming_report | |
| --property_renaming_report=closure/property_renaming_report | |
| --create_source_map=%outname%.map | |
| --warning_level=QUIET | |
| --dependency_mode=STRICT | |
| --rewrite_polyfills=false | |
| --module_resolution=node |
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
| import { Component, OnInit, OnChanges, Input, Output, ChangeDetectorRef, ElementRef, EventEmitter, SimpleChanges } from '@angular/core'; | |
| import { AudioService } from '../../../services/audio.service'; | |
| import { DataChannel } from '../../../services/data-channel/data-channel.service'; | |
| import { UIController } from '../../../models/controller'; | |
| import { UIControl } from '../../../models/control'; | |
| import { Meter } from '../../../models/meter'; | |
| declare let d3: any; | |
| @Component({ |
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
| body { | |
| width: 100%; | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| canvas { | |
| width: 100%; | |
| height: 100%; |
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
| body { | |
| width: 100%; | |
| height: 100%; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| canvas { | |
| width: 100%; | |
| height: 100%; |