blob: d442ec1338a877a792c051410d5c383b8755aed9 (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2008 litl, LLC
// simple test module (used by testImporter.js)
/* exported bar, foo */
var foo = 'This is foo';
var bar = 'This is bar';
|