>
>
> ```js
> let app = module.exports = require('express')();
> ```
>

Not impossible.  Possibly:

    import express from "express";
    let app = express();
    export { app as default };

I think you're attempting to optimize edge cases.

Also, I agree with Domenic.  Read the grammar for the current spec and try
not to post syntax errors that might lead others astray  : )
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to