Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
fixing some inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
getify committed Apr 1, 2017
1 parent 510105a commit 45e6b48
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.coveralls.yml
node_modules
dist
node_modules/
dist/
coverage/
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.gitignore
.coveralls.yml
node_modules/
coverage/
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ Other npm test scripts:

* `npm run test:all` will run all three modes of the test suite. This is what's automatically run when you first `npm install` the build and test dependencies.


To run the test utility directly without npm:

```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fpo",
"version": "5.2.3",
"version": "6.0.0",
"description": "FP library for JavaScript. Supports named-argument style methods.",
"main": "./dist/fpo.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion tests/qunit.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function done(results){

function prettyPrint(v) {
if (Array.isArray(v)) {
return `[${v.toString()}]`;
return `[${ v.map( prettyPrint ).toString() }]`;
}
else if (v && typeof v == "object") {
return JSON.stringify(v,function(k,v){
Expand Down

0 comments on commit 45e6b48

Please sign in to comment.