blob: d1c7ab560dd6aee4f185240fbaac6721773892cd (
plain)
1
2
3
4
5
6
7
8
9
10
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2020 Philip Chimento <philip.chimento@gmail.com>
export function say(str) {
return `<( ${str} )`;
}
export default function () {
return 'default export';
}
|