Skip to content

Instantly share code, notes, and snippets.

View dgp1130's full-sized avatar
💭
🐶

Douglas Parker dgp1130

💭
🐶
View GitHub Profile
@dgp1130
dgp1130 / file.js
Last active August 7, 2016 07:42
Karma Babel Preprocessor cannot parse ES6 lambda syntax () -> {};
window.temp = "world";
let test = "hello";
window.test = test;
var { one, two } = { one: 1, two: 2 };
window.one = one;
window.two = two;
window.foo = function (bar = "bar") {