index.js 255 B

1234567891011
  1. /*!
  2. * is-glob <https://github.com/jonschlinkert/is-glob>
  3. *
  4. * Copyright (c) 2014-2015, Jon Schlinkert.
  5. * Licensed under the MIT License.
  6. */
  7. module.exports = function isGlob(str) {
  8. return typeof str === 'string'
  9. && /[!*{}?(|)[\]]/.test(str);
  10. };