From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001
From: Minteck <contact@minteck.org>
Date: Thu, 23 Feb 2023 19:34:56 +0100
Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905
 files (automated)

---
 school/node_modules/toidentifier/HISTORY.md   |  9 ----
 school/node_modules/toidentifier/LICENSE      | 21 ---------
 school/node_modules/toidentifier/README.md    | 61 ---------------------------
 school/node_modules/toidentifier/index.js     | 32 --------------
 school/node_modules/toidentifier/package.json | 38 -----------------
 5 files changed, 161 deletions(-)
 delete mode 100644 school/node_modules/toidentifier/HISTORY.md
 delete mode 100644 school/node_modules/toidentifier/LICENSE
 delete mode 100644 school/node_modules/toidentifier/README.md
 delete mode 100644 school/node_modules/toidentifier/index.js
 delete mode 100644 school/node_modules/toidentifier/package.json

(limited to 'school/node_modules/toidentifier')

diff --git a/school/node_modules/toidentifier/HISTORY.md b/school/node_modules/toidentifier/HISTORY.md
deleted file mode 100644
index cb7cc89..0000000
--- a/school/node_modules/toidentifier/HISTORY.md
+++ /dev/null
@@ -1,9 +0,0 @@
-1.0.1 / 2021-11-14
-==================
-
-  * pref: enable strict mode
-
-1.0.0 / 2018-07-09
-==================
-
-  * Initial release
diff --git a/school/node_modules/toidentifier/LICENSE b/school/node_modules/toidentifier/LICENSE
deleted file mode 100644
index de22d15..0000000
--- a/school/node_modules/toidentifier/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.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/school/node_modules/toidentifier/README.md b/school/node_modules/toidentifier/README.md
deleted file mode 100644
index 57e8a78..0000000
--- a/school/node_modules/toidentifier/README.md
+++ /dev/null
@@ -1,61 +0,0 @@
-# toidentifier
-
-[![NPM Version][npm-image]][npm-url]
-[![NPM Downloads][downloads-image]][downloads-url]
-[![Build Status][github-actions-ci-image]][github-actions-ci-url]
-[![Test Coverage][codecov-image]][codecov-url]
-
-> Convert a string of words to a JavaScript identifier
-
-## Install
-
-This is a [Node.js](https://nodejs.org/en/) module available through the
-[npm registry](https://www.npmjs.com/). Installation is done using the
-[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
-
-```bash
-$ npm install toidentifier
-```
-
-## Example
-
-```js
-var toIdentifier = require('toidentifier')
-
-console.log(toIdentifier('Bad Request'))
-// => "BadRequest"
-```
-
-## API
-
-This CommonJS module exports a single default function: `toIdentifier`.
-
-### toIdentifier(string)
-
-Given a string as the argument, it will be transformed according to
-the following rules and the new string will be returned:
-
-1. Split into words separated by space characters (`0x20`).
-2. Upper case the first character of each word.
-3. Join the words together with no separator.
-4. Remove all non-word (`[0-9a-z_]`) characters.
-
-## License
-
-[MIT](LICENSE)
-
-[codecov-image]: https://img.shields.io/codecov/c/github/component/toidentifier.svg
-[codecov-url]: https://codecov.io/gh/component/toidentifier
-[downloads-image]: https://img.shields.io/npm/dm/toidentifier.svg
-[downloads-url]: https://npmjs.org/package/toidentifier
-[github-actions-ci-image]: https://img.shields.io/github/workflow/status/component/toidentifier/ci/master?label=ci
-[github-actions-ci-url]: https://github.com/component/toidentifier?query=workflow%3Aci
-[npm-image]: https://img.shields.io/npm/v/toidentifier.svg
-[npm-url]: https://npmjs.org/package/toidentifier
-
-
-##
-
-[npm]: https://www.npmjs.com/
-
-[yarn]: https://yarnpkg.com/
diff --git a/school/node_modules/toidentifier/index.js b/school/node_modules/toidentifier/index.js
deleted file mode 100644
index 9295d02..0000000
--- a/school/node_modules/toidentifier/index.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/*!
- * toidentifier
- * Copyright(c) 2016 Douglas Christopher Wilson
- * MIT Licensed
- */
-
-'use strict'
-
-/**
- * Module exports.
- * @public
- */
-
-module.exports = toIdentifier
-
-/**
- * Trasform the given string into a JavaScript identifier
- *
- * @param {string} str
- * @returns {string}
- * @public
- */
-
-function toIdentifier (str) {
-  return str
-    .split(' ')
-    .map(function (token) {
-      return token.slice(0, 1).toUpperCase() + token.slice(1)
-    })
-    .join('')
-    .replace(/[^ _0-9a-z]/gi, '')
-}
diff --git a/school/node_modules/toidentifier/package.json b/school/node_modules/toidentifier/package.json
deleted file mode 100644
index 42db1a6..0000000
--- a/school/node_modules/toidentifier/package.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
-  "name": "toidentifier",
-  "description": "Convert a string of words to a JavaScript identifier",
-  "version": "1.0.1",
-  "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
-  "contributors": [
-    "Douglas Christopher Wilson <doug@somethingdoug.com>",
-    "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
-  ],
-  "repository": "component/toidentifier",
-  "devDependencies": {
-    "eslint": "7.32.0",
-    "eslint-config-standard": "14.1.1",
-    "eslint-plugin-import": "2.25.3",
-    "eslint-plugin-markdown": "2.2.1",
-    "eslint-plugin-node": "11.1.0",
-    "eslint-plugin-promise": "4.3.1",
-    "eslint-plugin-standard": "4.1.0",
-    "mocha": "9.1.3",
-    "nyc": "15.1.0"
-  },
-  "engines": {
-    "node": ">=0.6"
-  },
-  "license": "MIT",
-  "files": [
-    "HISTORY.md",
-    "LICENSE",
-    "index.js"
-  ],
-  "scripts": {
-    "lint": "eslint .",
-    "test": "mocha --reporter spec --bail --check-leaks test/",
-    "test-ci": "nyc --reporter=lcov --reporter=text npm test",
-    "test-cov": "nyc --reporter=html --reporter=text npm test",
-    "version": "node scripts/version-history.js && git add HISTORY.md"
-  }
-}
-- 
cgit