aboutsummaryrefslogtreecommitdiff
path: root/test/js/module/sub/sub1.js
blob: 3b188ade72661e09c170fdb4fc71e013826eee74 (plain)
1
2
3
4
5
6
7
8
9
10
11
function hash() {
    return sub2.hash();
}

function error() {
    return {}.a.a;
}

import sub2 from 'sub2.js';

export default {hash, error};