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: Nexmo/nexmo-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.4.0
Choose a base ref
...
head repository: Nexmo/nexmo-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b4a3973b2c22d1fb1a84bfa72fd65f1bb297d209
Choose a head ref
Loading
Showing with 838 additions and 751 deletions.
  1. +3 −0 .gitattributes
  2. +9 −5 .travis.yml
  3. +1 −1 LICENSE.txt
  4. +63 −58 README.md
  5. +676 −661 package-lock.json
  6. +12 −12 package.json
  7. +2 −2 src/CallsResource.js
  8. +1 −1 src/DtmfResource.js
  9. +1 −1 src/StreamResource.js
  10. +1 −1 src/TalkResource.js
  11. +27 −4 test/CallResource-test.js
  12. +5 −1 test/DtmfResource-test.js
  13. +3 −1 test/Media-test.js
  14. +1 −0 test/ResourceTestHelper.js
  15. +7 −2 test/StreamResource-test.js
  16. +26 −1 test/TalkResource-test.js
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Set the default behavior for line endings
* text=auto
* text eol=lf
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
os:
- windows
- linux
- osx
language: node_js
node_js:
- 4
- 6
- 8
- lts/*
- node
- 4
- 6
- 8
- lts/*
- node
deploy:
provider: npm
email: devrel@nexmo.com
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

The MIT License (MIT)

Copyright (c) 2016 Nexmo Inc
Copyright (c) 2018 Nexmo Inc

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Loading