Skip to content

Commit

Permalink
fix: comma dangle in method call throws in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-scherzinger committed Jan 24, 2017
1 parent 7dd0c52 commit 39c7403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/Resource.js
Expand Up @@ -92,7 +92,7 @@ export default class Resource {
this.newRequest().follow('self'),
// TODO does this Object.assign work how I want it to?
// or do we need for(key in obj) loop?
Object.assign(this.resource.original(), this.resource),
Object.assign(this.resource.original(), this.resource)
)
.then(([res, traversal]) => {
this.resource = halfred.parse(res);
Expand Down

0 comments on commit 39c7403

Please sign in to comment.