first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

11
build/node_modules/strip-outer/index.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
var escapeStringRegexp = require('escape-string-regexp');
module.exports = function (str, sub) {
if (typeof str !== 'string' || typeof sub !== 'string') {
throw new TypeError();
}
sub = escapeStringRegexp(sub);
return str.replace(new RegExp('^' + sub + '|' + sub + '$', 'g'), '');
};

78
build/node_modules/strip-outer/package.json generated vendored Normal file
View File

@@ -0,0 +1,78 @@
{
"_args": [
[
"strip-outer@1.0.0",
"/Users/asciidisco/Desktop/asciidisco.com/build"
]
],
"_from": "strip-outer@1.0.0",
"_id": "strip-outer@1.0.0",
"_inBundle": false,
"_integrity": "sha1-qsC6YNLpDF1PJ1/Yhp/ZotMQ/7g=",
"_location": "/strip-outer",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "strip-outer@1.0.0",
"name": "strip-outer",
"escapedName": "strip-outer",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/filenamify"
],
"_resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/strip-outer/issues"
},
"dependencies": {
"escape-string-regexp": "^1.0.2"
},
"description": "Strip a substring from the start/end of a string",
"devDependencies": {
"ava": "0.0.4"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/strip-outer#readme",
"keywords": [
"strip",
"trim",
"remove",
"outer",
"str",
"string",
"substring",
"start",
"end",
"wrap",
"leading",
"trailing",
"regex",
"regexp"
],
"license": "MIT",
"name": "strip-outer",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/strip-outer.git"
},
"scripts": {
"test": "node test.js"
},
"version": "1.0.0"
}

28
build/node_modules/strip-outer/readme.md generated vendored Normal file
View File

@@ -0,0 +1,28 @@
# strip-outer [![Build Status](https://travis-ci.org/sindresorhus/strip-outer.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-outer)
> Strip a substring from the start/end of a string
## Install
```
$ npm install --save strip-outer
```
## Usage
```js
var stripOuter = require('strip-outer');
stripOuter('foobarfoo', 'foo');
//=> bar
stripOuter('unicorncake', 'unicorn');
//=> cake
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)