// myFoo.mjs
    _hiddenFoo = false;
    export get foo() {
      return _hiddenFoo;
    }

    export set foo(value) {
      _hiddenFoo = !!value;
    }

    // main.mjs
    import {foo} from './myFoo.mjs';

Not sure if this has been discussed, but would be a nice feature to have in
some cases... I know, total side effects and mutations, all the same, would
be a nice to have in a few cases.

-- 
Michael J. Ryan
480-270-4509
https://www.tracker1.info/
[email protected]
[email protected]
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to