From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- node_modules/filename-reserved-regex/index.js | 5 --- node_modules/filename-reserved-regex/license | 21 ---------- node_modules/filename-reserved-regex/package.json | 36 ----------------- node_modules/filename-reserved-regex/readme.md | 49 ----------------------- 4 files changed, 111 deletions(-) delete mode 100644 node_modules/filename-reserved-regex/index.js delete mode 100644 node_modules/filename-reserved-regex/license delete mode 100644 node_modules/filename-reserved-regex/package.json delete mode 100644 node_modules/filename-reserved-regex/readme.md (limited to 'node_modules/filename-reserved-regex') diff --git a/node_modules/filename-reserved-regex/index.js b/node_modules/filename-reserved-regex/index.js deleted file mode 100644 index 174f46f..0000000 --- a/node_modules/filename-reserved-regex/index.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; -/* eslint-disable no-control-regex */ -// TODO: remove parens when Node.js 6 is targeted. Node.js 4 barfs at it. -module.exports = () => (/[<>:"\/\\|?*\x00-\x1F]/g); -module.exports.windowsNames = () => (/^(con|prn|aux|nul|com[0-9]|lpt[0-9])$/i); diff --git a/node_modules/filename-reserved-regex/license b/node_modules/filename-reserved-regex/license deleted file mode 100644 index 654d0bf..0000000 --- a/node_modules/filename-reserved-regex/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/filename-reserved-regex/package.json b/node_modules/filename-reserved-regex/package.json deleted file mode 100644 index 37074a0..0000000 --- a/node_modules/filename-reserved-regex/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "filename-reserved-regex", - "version": "2.0.0", - "description": "Regular expression for matching reserved filename characters", - "license": "MIT", - "repository": "sindresorhus/filename-reserved-regex", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "re", - "regex", - "regexp", - "filename", - "reserved", - "illegal" - ], - "devDependencies": { - "ava": "*", - "xo": "*" - }, - "xo": { - "esnext": true - } -} diff --git a/node_modules/filename-reserved-regex/readme.md b/node_modules/filename-reserved-regex/readme.md deleted file mode 100644 index 91641b5..0000000 --- a/node_modules/filename-reserved-regex/readme.md +++ /dev/null @@ -1,49 +0,0 @@ -# filename-reserved-regex [![Build Status](https://travis-ci.org/sindresorhus/filename-reserved-regex.svg?branch=master)](https://travis-ci.org/sindresorhus/filename-reserved-regex) - -> Regular expression for matching reserved filename characters - -On Unix-like systems `/` is reserved and [`<>:"/\|?*`](http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29#naming_conventions) as well as non-printable characters `\x00-\x1F` on Windows. - - -## Install - -``` -$ npm install --save filename-reserved-regex -``` - - -## Usage - -```js -const filenameReservedRegex = require('filename-reserved-regex'); - -filenameReservedRegex().test('foo/bar'); -//=> true - -filenameReservedRegex().test('foo-bar'); -//=> false - -'foo/bar'.replace(filenameReservedRegex(), '!'); -//=> 'foo!bar' - -filenameReservedRegex.windowsNames().test('aux'); -//=> true -``` - -## API - -### filenameReservedRegex() - -Returns a regex that matches all invalid characters. - -### filenameReservedRegex.windowsNames() - -Returns a exact-match case-insensitive regex that matches invalid Windows -filenames. These include `CON`, `PRN`, `AUX`, `NUL`, `COM1`, `COM2`, `COM3`, `COM4`, `COM5`, -`COM6`, `COM7`, `COM8`, `COM9`, `LPT1`, `LPT2`, `LPT3`, `LPT4`, `LPT5`, `LPT6`, `LPT7`, `LPT8` -and `LPT9`. - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) -- cgit v1.2.3-86-g962b