arudradey's picture
download
raw
441 Bytes
/*!
* is-extglob <https://github.com/jonschlinkert/is-extglob>
*
* Copyright (c) 2014-2016, Jon Schlinkert.
* Licensed under the MIT License.
*/
module.exports = function isExtglob(str) {
if (typeof str !== 'string' || str === '') {
return false;
}
var match;
while ((match = /(\\).|([@?!+*]\(.*\))/g.exec(str))) {
if (match[2]) return true;
str = str.slice(match.index + match[0].length);
}
return false;
};

Xet Storage Details

Size:
441 Bytes
·
Xet hash:
a3b6063d12661fe931d43c9237485d065fb0ef1e771f3261eb6bb903d115249b

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.