• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict'
2
3const { glob } = require('glob')
4const path = require('path')
5
6const globify = (pattern) => pattern.split(path.win32.sep).join(path.posix.sep)
7module.exports = (path, options) => glob(globify(path), options)
8