koa-modules / swig

Koa view render based on Swig, support tags, filters, and extensions
MIT License
30 stars 12 forks source link

`Object.create` not work in node env #2

Closed haoxins closed 10 years ago

haoxins commented 10 years ago

chrome

var u = {name:'haoxin'};
var c = Object.create(u);
// c is
// {name: "haoxin"}

but in node env, just get c is {}

haoxins commented 10 years ago

oh, it's same. both to __proto__