Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hapijs/hoek
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 20f36e85616264d4b73a64a374803175213a9121
Choose a base ref
...
head repository: hapijs/hoek
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47d63062e1601cc6bd46e83f8490a89c14bd92c5
Choose a head ref
Loading
Showing with 2,119 additions and 2,471 deletions.
  1. +12 −17 .gitignore
  2. +3 −0 .npmignore
  3. +4 −2 .travis.yml
  4. +408 −0 API.md
  5. +3 −0 CHANGELOG.md
  6. +1 −1 CONTRIBUTING.md
  7. +2 −7 LICENSE
  8. +7 −576 README.md
  9. +315 −0 lib/deep-equal.js
  10. +35 −40 lib/escape.js
  11. +214 −521 lib/index.js
  12. +3 −6 package.json
  13. +85 −44 test/escaper.js
  14. +1,021 −1,257 test/index.js
  15. +2 −0 test/modules/test1.js
  16. +2 −0 test/modules/test2.js
  17. +2 −0 test/modules/test3.js
29 changes: 12 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
.idea
*.iml
npm-debug.log
dump.rdb
node_modules
results.tap
results.xml
npm-shrinkwrap.json
config.json
.DS_Store
*/.DS_Store
*/*/.DS_Store
._*
*/._*
*/*/._*
**/node_modules
**/package-lock.json

coverage.*
lib-cov
complexity.md

**/.DS_Store
**/._*

**/*.pem

**/.vs
**/.vscode
**/.idea
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!lib/**
!.npmignore
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: node_js

node_js:
- 0.10
- 4.0
- "8"
- "10"
- "11"
- "node"

sudo: false
Loading