mirror of
https://github.com/developit/microbundle.git
synced 2026-01-18 13:56:35 +00:00
6 lines
123 B
JavaScript
6 lines
123 B
JavaScript
import { two } from './two';
|
|
|
|
export default async function(...args) {
|
|
return [await two(...args), await two(...args)];
|
|
}
|