summaryrefslogtreecommitdiff
path: root/installed-tests/js/modules/mutualImport/b.js
blob: aabc1da89374470b00c761e9fb8c3a27e36d1b87 (plain)
1
2
3
4
5
6
7
8
9
10
/* exported getCount */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2008 Red Hat, Inc.

const A = imports.mutualImport.a;

function getCount() {
    return A.getCount();
}