From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- .../node_modules/string-trim-spaces-only/README.md | 70 ---------------------- 1 file changed, 70 deletions(-) delete mode 100644 school/node_modules/string-trim-spaces-only/README.md (limited to 'school/node_modules/string-trim-spaces-only/README.md') diff --git a/school/node_modules/string-trim-spaces-only/README.md b/school/node_modules/string-trim-spaces-only/README.md deleted file mode 100644 index e683d8c..0000000 --- a/school/node_modules/string-trim-spaces-only/README.md +++ /dev/null @@ -1,70 +0,0 @@ -# string-trim-spaces-only - -> Like String.trim() but you can choose granularly what to trim - -
- - page on npm - - - page on codsen.com - - - page on github - - - Downloads per month - - - Code style: prettier - - MIT License - - libera manifesto - -
- -## Install - -```bash -npm i string-trim-spaces-only -``` - -## Quick Take - -```js -import { strict as assert } from "assert"; -import { trimSpaces } from "string-trim-spaces-only"; - -assert.deepEqual(trimSpaces(" aaa "), { - res: "aaa", - ranges: [ - [0, 2], - [5, 8], - ], -}); - -assert.deepEqual(trimSpaces(" \t zz \n "), { - res: "\t zz \n", - ranges: [ - [0, 3], - [12, 16], - ], -}); -``` - -## Documentation - -Please [visit codsen.com](https://codsen.com/os/string-trim-spaces-only/) for a full description of the API and examples. - -## Contributing - -To report bugs or request features or assistance, [raise an issue](https://github.com/codsen/codsen/issues/new/choose) on GitHub. - -## Licence - -MIT License - -Copyright (c) 2010-2021 Roy Revelt and other contributors - -ok codsen star -- cgit