mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
import tinyglob from 'tiny-glob';
|
|
console.log(tinyglob);
|
|
|
|
import { two } from './two';
|
|
|
|
export default async function (...args) {
|
|
return [await two(...args), await two(...args)];
|
|
}
|