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

function exception() {
    return sub.error();
}

import sub from 'sub/sub1.js';

export default {hash, exception};