Sha256: b1a9d42ac0ff480c7934570dd636d4b78bd6de0b7163ea406830870e775feeff
Contents?: true
Size: 255 Bytes
Versions: 16
Compression:
Stored size: 255 Bytes
Contents
/*! * is-glob <https://github.com/jonschlinkert/is-glob> * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ module.exports = function isGlob(str) { return typeof str === 'string' && /[!*{}?(|)[\]]/.test(str); };
Version data entries
16 entries across 16 versions & 3 rubygems