Sha256: c2f4bbb911061649fe1f53e20360e389241161189c2ec132ac5f8e3df9066444
Contents?: true
Size: 260 Bytes
Versions: 51
Compression:
Stored size: 260 Bytes
Contents
/*! * is-extglob <https://github.com/jonschlinkert/is-extglob> * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ module.exports = function isExtglob(str) { return typeof str === 'string' && /[@?!+*]\(/.test(str); };
Version data entries
51 entries across 48 versions & 17 rubygems