@stdlib/string-left-trim-n-cli 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +16 -7
- package/package.json +10 -10
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ limitations under the License.
|
|
|
33
33
|
|
|
34
34
|
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
35
35
|
|
|
36
|
-
> Trim `n` characters from the
|
|
36
|
+
> Trim `n` characters from the beginning of a string.
|
|
37
37
|
|
|
38
38
|
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
|
|
39
39
|
|
|
@@ -171,7 +171,8 @@ baz~~~
|
|
|
171
171
|
## See Also
|
|
172
172
|
|
|
173
173
|
- <span class="package-name">[`@stdlib/string-left-trim-n`][@stdlib/string-left-trim-n]</span><span class="delimiter">: </span><span class="description">trim `n` characters from the beginning of a string.</span>
|
|
174
|
-
|
|
174
|
+
- <span class="package-name">[`@stdlib/string-right-trim-n`][@stdlib/string/right-trim-n]</span><span class="delimiter">: </span><span class="description">trim `n` characters from the end of a string.</span>
|
|
175
|
+
- <span class="package-name">[`@stdlib/string-trim`][@stdlib/string/trim]</span><span class="delimiter">: </span><span class="description">trim whitespace characters from the beginning and end of a string.</span>
|
|
175
176
|
|
|
176
177
|
</section>
|
|
177
178
|
|
|
@@ -203,7 +204,7 @@ See [LICENSE][stdlib-license].
|
|
|
203
204
|
|
|
204
205
|
## Copyright
|
|
205
206
|
|
|
206
|
-
Copyright © 2016-
|
|
207
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
207
208
|
|
|
208
209
|
</section>
|
|
209
210
|
|
|
@@ -216,8 +217,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
216
217
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-left-trim-n-cli.svg
|
|
217
218
|
[npm-url]: https://npmjs.org/package/@stdlib/string-left-trim-n-cli
|
|
218
219
|
|
|
219
|
-
[test-image]: https://github.com/stdlib-js/string-left-trim-n/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
220
|
-
[test-url]: https://github.com/stdlib-js/string-left-trim-n/actions/workflows/test.yml?query=branch:v0.2.
|
|
220
|
+
[test-image]: https://github.com/stdlib-js/string-left-trim-n/actions/workflows/test.yml/badge.svg?branch=v0.2.3
|
|
221
|
+
[test-url]: https://github.com/stdlib-js/string-left-trim-n/actions/workflows/test.yml?query=branch:v0.2.3
|
|
221
222
|
|
|
222
223
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-left-trim-n/main.svg
|
|
223
224
|
[coverage-url]: https://codecov.io/github/stdlib-js/string-left-trim-n?branch=main
|
|
@@ -229,8 +230,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
229
230
|
|
|
230
231
|
-->
|
|
231
232
|
|
|
232
|
-
[chat-image]: https://img.shields.io/
|
|
233
|
-
[chat-url]: https://
|
|
233
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
234
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
234
235
|
|
|
235
236
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
236
237
|
|
|
@@ -257,6 +258,14 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
257
258
|
|
|
258
259
|
[standard-streams]: https://en.wikipedia.org/wiki/Standard_streams
|
|
259
260
|
|
|
261
|
+
<!-- <related-links> -->
|
|
262
|
+
|
|
263
|
+
[@stdlib/string/right-trim-n]: https://www.npmjs.com/package/@stdlib/string-right-trim-n
|
|
264
|
+
|
|
265
|
+
[@stdlib/string/trim]: https://www.npmjs.com/package/@stdlib/string-trim
|
|
266
|
+
|
|
267
|
+
<!-- </related-links> -->
|
|
268
|
+
|
|
260
269
|
</section>
|
|
261
270
|
|
|
262
271
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/string-left-trim-n-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Trim `n` characters from the beginning of a string.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@stdlib/assert-is-regexp-string": "^0.2.
|
|
29
|
-
"@stdlib/cli-ctor": "^0.2.
|
|
30
|
-
"@stdlib/fs-read-file": "^0.2.
|
|
31
|
-
"@stdlib/process-read-stdin": "^0.2.
|
|
32
|
-
"@stdlib/regexp-eol": "^0.2.
|
|
33
|
-
"@stdlib/streams-node-stdin": "^0.2.
|
|
34
|
-
"@stdlib/string-replace": "^0.2.
|
|
35
|
-
"@stdlib/utils-regexp-from-string": "^0.2.
|
|
36
|
-
"@stdlib/string-left-trim-n": "0.2.
|
|
28
|
+
"@stdlib/assert-is-regexp-string": "^0.2.2",
|
|
29
|
+
"@stdlib/cli-ctor": "^0.2.3",
|
|
30
|
+
"@stdlib/fs-read-file": "^0.2.3",
|
|
31
|
+
"@stdlib/process-read-stdin": "^0.2.2",
|
|
32
|
+
"@stdlib/regexp-eol": "^0.2.3",
|
|
33
|
+
"@stdlib/streams-node-stdin": "^0.2.3",
|
|
34
|
+
"@stdlib/string-replace": "^0.2.2",
|
|
35
|
+
"@stdlib/utils-regexp-from-string": "^0.2.3",
|
|
36
|
+
"@stdlib/string-left-trim-n": "0.2.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {},
|
|
39
39
|
"keywords": [
|