判断对象中所有键值对是否都让回调结果为真。
object.every(callback)
data = {a: 1, b: 2} result = data.every(fn(value) { value > 0 }) // 输出:true print result