(partially) polyfill ES5.1 Object.create
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create
【 在 saynothing (止语) 的大作中提到: 】
: if (typeof Object.create !== 'function') {
: Object.create = function (o) {
: var F = function () {};
: ...................
--
FROM 180.173.161.*