summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cacache/lib/util/glob.js
blob: 38b5459c59b2947e5ad2e299d13edec0e710d4dc (plain)
1
2
3
4
5
6
'use strict'

const glob = require('glob')

const globify = (pattern) => pattern.split('//').join('/')
module.exports = (path, options) => glob(globify(path), options)