Skip to content

Commit

Permalink
Merge branch 'racer-2' of github.com:derbyjs/derby into racer-2
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbeck committed Apr 18, 2024
2 parents 2bcc102 + 8b763ff commit 8d798ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "derby",
"description": "MVC framework making it easy to write realtime, collaborative applications that run in both Node.js and browsers.",
"version": "4.0.0-beta.11",
"version": "4.0.0-beta.12",
"homepage": "http://derbyjs.com/",
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion src/PageForServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ function stringifyBundle(bundle) {

// TODO: Cleanup; copied from tracks
function pageParams(req) {
const params = Object.create(null, {
const params = Object.create(null);
Object.assign(params, {
url: req.url,
body: req.body,
query: req.query,
Expand Down

0 comments on commit 8d798ab

Please sign in to comment.