mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-11 05:42:21 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
30
node_modules/trim-right/readme.md
generated
vendored
Normal file
30
node_modules/trim-right/readme.md
generated
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
# trim-right [](https://travis-ci.org/sindresorhus/trim-right)
|
||||
|
||||
> Similar to [`String#trim()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim) but removes only whitespace on the right
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save trim-right
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var trimRight = require('trim-right');
|
||||
|
||||
trimRight(' unicorn ');
|
||||
//=> ' unicorn'
|
||||
```
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [`trim-left`](https://github.com/sindresorhus/trim-left) - Similar to `String#trim()` but removes only whitespace on the left
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
Loading…
Add table
Add a link
Reference in a new issue