This file contains 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
//copied from https://github.com/jayphelps/core-decorators | |
const { defineProperty, getOwnPropertyDescriptor, | |
getOwnPropertyNames, getOwnPropertySymbols } = Object; | |
export function isDescriptor(desc) { | |
if (!desc || !desc.hasOwnProperty) { | |
return false; | |
} |
angular/angular#11228 (comment)
@Component({
...
providers: [MyService],
template: '<router-outlet></router-outlet>'
})
export class MyNavWrapperComponent {
// Must inject to instantiate service for all child routes.
This file contains 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
# https://stackoverflow.com/a/45101030/1585068 | |
docker rmi -f $(docker images -q) |
This file contains 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
_.fromPairs(_.differenceBy(_.entries(original), _.entries(target), ([key, val]) => val)) |
This file contains 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
/** | |
* Copyright (c) Matan Shukry | |
* All rights reserved. | |
*/ | |
import { UrlSegment, UrlSegmentGroup, Route } from '@angular/router'; | |
// export type UrlMatchResult = { | |
// consumed: UrlSegment[]; posParams?: { [name: string]: UrlSegment }; | |
// }; |
This file contains 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 __$$play = HTMLAudioElement.prototype.play; | |
HTMLAudioElement.prototype.play = function () { | |
this.playbackRate = 2; | |
return __$$play.apply(this, arguments); | |
}; |
This file contains 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 gulp = require('gulp') | |
var concat = require('gulp-concat') | |
var sourcemaps = require('gulp-sourcemaps') | |
var uglify = require('gulp-uglify') | |
var ngAnnotate = require('gulp-ng-annotate') | |
gulp.task('js', function () { | |
gulp.src(['src/**/module.js', 'src/**/*.js']) | |
.pipe(sourcemaps.init()) | |
.pipe(concat('app.js')) |
This file contains 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 createObject = (function () { | |
function Object() {} | |
return function createObjectF(obj) { | |
Object.prototype = obj; | |
obj = new Object(); | |
Object.prototype = null; | |
return obj; | |
} | |
}()); |
This file contains 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
// Easy way to parse raw URL without regex. | |
var locator = document.createElement('a'); | |
locator.href = 'http://google.com/?search=true&other=isnt#anchor' | |
console.log(locator.protocol); | |
console.log(locator.host); | |
console.log(locator.search); | |
console.log(locator.hash); |
NewerOlder