Closed anonimitoraf closed 2 years ago
function b(n) { return 'b'; } export default b;
and
import deef from './temp-2'; deef() // 'b'
is fine, but then,
function c(n) { return 'c'; } export default c;
which should've printed out c instead
c
Fixed by https://github.com/anonimitoraf/skerrick/commit/07ed9d62b89098a345f0a38018be7f8dc51b51fd
and
is fine, but then,
and
which should've printed out
c
instead