摘要: Object.flatten = function(obj){ var result = {}; function recurse(src, prop) { var toString = Object.prototype.toString; if (toString.call(src) == '[object Object]') { ... 阅读全文
posted @ 2017-06-30 01:46 全玉 阅读(8614) 评论(0) 推荐(0) 编辑