UNPKG

react-saasify-chrisvxd

Version:

React components for Saasify web clients.

21 lines (15 loc) 411 B
"use strict"; const isGlob = require('is-glob'); const fastGlob = require('fast-glob'); function normalisePath(p) { return p.replace(/\\/g, '/'); } exports.isGlob = function (p) { return isGlob(normalisePath(p)); }; exports.glob = function (p, options) { return fastGlob(normalisePath(p), options); }; exports.glob.sync = function (p, options) { return fastGlob.sync(normalisePath(p), options); };