* 返回序列化的值 * @param {String} value * @return {String}
(value)
| 539 | * @return {String} |
| 540 | */ |
| 541 | serializeValue(value) { |
| 542 | if (this.isObject(value)) return this.isDate(value) ? value.toISOString() : this.toJson(value) |
| 543 | return value |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * 编码URI |
no test coverage detected