This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1d9b1f
commit 21d9144
Showing
5 changed files
with
57 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
node_modules | ||
.npm | ||
logs | ||
*.log | ||
.idea | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
- "5" | ||
- "4" | ||
- "0.12" | ||
- "0.11" | ||
- "0.10" | ||
- 14 | ||
- 13 | ||
- 12 | ||
- 10 | ||
- 9 | ||
- 8 | ||
- 6 | ||
- 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
# rtrim / CHANGELOG | ||
|
||
|
||
### v1.0.0 (2016-10-28) | ||
### v1.0.1 (2020-11-25) | ||
* Cleanup code | ||
* Update Node.js versions at `.travis.yml` | ||
|
||
### v1.0.0 (2016-10-28) | ||
* Add ESLint with `node` plugin | ||
* Remove `*.lock` from `.gitignore` | ||
* Refactor `package.json` | ||
* Text changes in `README.md` | ||
* Add `yarn.lock` file | ||
* Some code cleanups | ||
|
||
|
||
### v0.0.3 (2016-06-17) | ||
|
||
* Cleanup readme | ||
|
||
|
||
### v0.0.2 (2016-06-17) | ||
|
||
* Adjust code to ltrim | ||
|
||
|
||
### v0.0.1 (2016-06-16) | ||
|
||
* Initial commit | ||
* Initial commit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
{ | ||
"name": "rtrim", | ||
"version": "1.0.0", | ||
"description": "Strip whitespace - or other characters - from the end of a string", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js" | ||
], | ||
"scripts": { | ||
"test": "mocha", | ||
"lint": "eslint ." | ||
}, | ||
"keywords": [ | ||
"trim", | ||
"rtrim", | ||
"strip", | ||
"string" | ||
], | ||
"author": { | ||
"name": "Sergej Müller", | ||
"url": "https://sergejmueller.github.io" | ||
}, | ||
"homepage": "https://github.com/sergejmueller/rtrim", | ||
"repository": "sergejmueller/rtrim", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"array-range": "^1.0.1", | ||
"chai": "^3.5.0", | ||
"eslint": "^3.8.1", | ||
"eslint-plugin-node": "^2.1.3", | ||
"mocha": "^3.1.2", | ||
"shuffle-array": "^1.0.0" | ||
}, | ||
"engines": { | ||
"node": ">=0.10" | ||
} | ||
"name": "rtrim", | ||
"version": "1.0.1", | ||
"description": "Strip whitespace - or other characters - from the end of a string", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js" | ||
], | ||
"scripts": { | ||
"test": "mocha", | ||
"lint": "eslint ." | ||
}, | ||
"keywords": [ | ||
"trim", | ||
"rtrim", | ||
"strip", | ||
"string" | ||
], | ||
"author": { | ||
"name": "Sergej Müller", | ||
"url": "https://sergejmueller.github.io" | ||
}, | ||
"homepage": "https://github.com/sergejmueller/rtrim", | ||
"repository": "git://github.com/sergejmueller/rtrim.git", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"array-range": "^1.0.1", | ||
"chai": "^3.5.0", | ||
"eslint": "^3.8.1", | ||
"eslint-plugin-node": "^2.1.3", | ||
"mocha": "^3.1.2", | ||
"shuffle-array": "^1.0.0" | ||
}, | ||
"engines": { | ||
"node": ">=0.10" | ||
} | ||
} |