diff options
author | Minteck <nekostarfan@gmail.com> | 2021-08-24 14:41:48 +0200 |
---|---|---|
committer | Minteck <nekostarfan@gmail.com> | 2021-08-24 14:41:48 +0200 |
commit | d25e11bee6ca5ca523884da132d18e1400e077b9 (patch) | |
tree | 8af39fde19f7ed640a60fb397c7edd647dff1c4c /node_modules/trim-repeated | |
download | kartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.tar.gz kartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.tar.bz2 kartik-iridium-d25e11bee6ca5ca523884da132d18e1400e077b9.zip |
Initial commit
Diffstat (limited to 'node_modules/trim-repeated')
-rw-r--r-- | node_modules/trim-repeated/index.js | 10 | ||||
-rw-r--r-- | node_modules/trim-repeated/license | 21 | ||||
-rw-r--r-- | node_modules/trim-repeated/package.json | 41 | ||||
-rw-r--r-- | node_modules/trim-repeated/readme.md | 47 |
4 files changed, 119 insertions, 0 deletions
diff --git a/node_modules/trim-repeated/index.js b/node_modules/trim-repeated/index.js new file mode 100644 index 0000000..cb67a69 --- /dev/null +++ b/node_modules/trim-repeated/index.js @@ -0,0 +1,10 @@ +'use strict'; +var escapeStringRegexp = require('escape-string-regexp'); + +module.exports = function (str, target) { + if (typeof str !== 'string' || typeof target !== 'string') { + throw new TypeError('Expected a string'); + } + + return str.replace(new RegExp('(?:' + escapeStringRegexp(target) + '){2,}', 'g'), target); +}; diff --git a/node_modules/trim-repeated/license b/node_modules/trim-repeated/license new file mode 100644 index 0000000..654d0bf --- /dev/null +++ b/node_modules/trim-repeated/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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/trim-repeated/package.json b/node_modules/trim-repeated/package.json new file mode 100644 index 0000000..0526c06 --- /dev/null +++ b/node_modules/trim-repeated/package.json @@ -0,0 +1,41 @@ +{ + "name": "trim-repeated", + "version": "1.0.0", + "description": "Trim a consecutively repeated substring: foo--bar---baz → foo-bar-baz", + "license": "MIT", + "repository": "sindresorhus/trim-repeated", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "node test.js" + }, + "files": [ + "index.js" + ], + "keywords": [ + "condense", + "collapse", + "compact", + "consecutive", + "repeated", + "string", + "str", + "trim", + "remove", + "strip", + "character", + "char" + ], + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "devDependencies": { + "ava": "0.0.4" + } +} diff --git a/node_modules/trim-repeated/readme.md b/node_modules/trim-repeated/readme.md new file mode 100644 index 0000000..7f5a7a7 --- /dev/null +++ b/node_modules/trim-repeated/readme.md @@ -0,0 +1,47 @@ +# trim-repeated [![Build Status](https://travis-ci.org/sindresorhus/trim-repeated.svg?branch=master)](https://travis-ci.org/sindresorhus/trim-repeated) + +> Trim a consecutively repeated substring: `foo--bar---baz` → `foo-bar-baz` + + +## Install + +``` +$ npm install --save trim-repeated +``` + + +## Usage + +```js +var trimRepeated = require('trim-repeated'); + +trimRepeated('foo--bar---baz', '-'); +//=> 'foo-bar-baz' + +trimRepeated('foo@#@#baz', '@#'); +//=> 'foo@#baz' +``` + +### trimRepeated(input, target) + +#### input + +*Required* +Type: `string` + +#### target + +*Required* +Type: `string` + +Substring to trim. + + +## Related + +- [`condense-whitespace`](https://github.com/sindresorhus/condense-whitespace) - Remove leading, trailing and repeated whitespace from a string + + +## License + +MIT © [Sindre Sorhus](http://sindresorhus.com) |