UNPKG

211 BJavaScriptView Raw
1#!/usr/bin/env/node
2'use strict'
3
4const expandglob = require('expandglob')
5
6expandglob([
7 'lib/*.js',
8 'doc/**/.js'
9], {
10 cwd: process.cwd(),
11 ignore: []
12}).then((filenames) => {
13 console.log(filenames)
14})