Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
has-glob
/
Filename :
index.js
back
Copy
/*! * has-glob <https://github.com/jonschlinkert/has-glob> * * Copyright (c) 2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; var isGlob = require('is-glob'); module.exports = function hasGlob(val) { if (val == null) return false; if (typeof val === 'string') { return isGlob(val); } if (Array.isArray(val)) { var len = val.length; while (len--) { if (isGlob(val[len])) { return true; } } } return false; };