glob.js 172 B

123456
  1. 'use strict'
  2. const { glob } = require('glob')
  3. const globify = (pattern) => pattern.split('//').join('/')
  4. module.exports = (path, options) => glob(globify(path), options)