mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
function globby(patterns, options) {
|
|
return Promise.resolve([])
|
|
}
|
|
|
|
globby.sync = function (patterns, options) {
|
|
return []
|
|
}
|
|
|
|
module.exports = globby
|
|
module.exports.default = globby
|