Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/is-invalid-path/index.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

16 lines
341 B
JavaScript

/*!
* is-invalid-path <https://github.com/jonschlinkert/is-invalid-path>
*
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
var isGlob = require('is-glob');
var re = /[‘“!#$%&+^<=>`]/;
module.exports = function (str) {
return (typeof str !== 'string') || isGlob(str) || re.test(str);
};