mirror of
https://github.com/electron/node-gyp.git
synced 2025-08-15 12:58:19 +02:00
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
const { glob } = require('glob')
|
|
const { promisify } = require('util')
|
|
|
|
module.exports = {
|
|
glob: promisify(glob)
|
|
}
|
|
|