glob.js 222 B

1234567
  1. 'use strict'
  2. const { glob } = require('glob')
  3. const path = require('path')
  4. const globify = (pattern) => pattern.split(path.win32.sep).join(path.posix.sep)
  5. module.exports = (path, options) => glob(globify(path), options)