Jan Olaf Martin
Jan Olaf Martin
Coffee-script: ``` coffee class Foo ``` Compiles to: ``` js // Generated by CoffeeScript 2.0.0-beta8 void function () { Foo = function () { function Foo() { } void 0;...
Minimal reproduction (using node 4): ``` bash rm -rf /tmp/missing-stack-trace; mkdir $_; cd $_ npm install coffee-script-redux coffee-script echo 'JSON.parse("")' >b.coffee; echo 'require("./b.coffee")' >a.js ``` With redux: ``` bash >...
I understand that it's convenient but I think quite some people would consider it a bad practice to change the prototype of built-in types. It's modifying global state which would...
This is half question, half suggestion: Are there plans for adding `Reflect.metadata` to the [list of ECMA262 proposals](https://github.com/tc39/ecma262/blob/master/stage0.md)? It seems like there is progress in the TypeScript integration but no...
It can be useful csrf tokens as a state parameter to oauth callbacks. Those are a bit of a snowflake: the state is expected to be part of the query...
[This commit](https://github.com/estools/escodegen/commit/5b152cf4353cc8b4752aabe6e39d5d98bcd65f71) sets the engine field to `>=0.12` but it looks like the CI runs still include 0.10. Is 0.10 no longer supported? Or was the commit only meant to...
I'm currently migrating from lodash 3 to lodash 4. I looked into this plugin to help me identify the parts of my code where I'm using lodash methods that no...
Chrome supports the following: ``` # Open a new blank tab/page /json/new # Open a new blank tab with a given url /json/new? ``` I'd like to see this being...
Right now we are using CSR for parsing which handles a huge superset of the files we'd want to parse. We should consider implementing a clean parser for CSON as...
Sometimes parts of the configuration for a build should not be put as plain text into the config file. Travis offers [encrypted environment variables](http://docs.travis-ci.com/user/environment-variables/#Encrypted-Variables) to address this. This allows for...