mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-18 12:12:43 +08:00
8 lines
118 B
JavaScript
8 lines
118 B
JavaScript
const { glob } = require('glob')
|
|
const { promisify } = require('util')
|
|
|
|
module.exports = {
|
|
glob: promisify(glob)
|
|
}
|
|
|