meteor / postgres-packages

Early preview of PostgreSQL support for Meteor (deprecated, here for historical reasons)
http://meteor-postgres.readthedocs.org/
158 stars 25 forks source link

Unreachable code after return statement #46

Open yoonghm opened 8 years ago

yoonghm commented 8 years ago

In my installation, the problems are in

.npm/package/node_modules/bluebird/js/main/util.js
.npm/package/node_modules/bluebird/js/browser/bluebird.js
function toFastProperties(obj) {
    /*jshint -W027,-W055,-W031*/
    function f() {}
    f.prototype = obj;
    var l = 8;
    while (l--) new f();
    return obj;
    eval(obj);
}