vince-fly

Results 1 comments of vince-fly

``` Object.defineProperty(Array.prototype, 'vsplice', { value: function (start, delCount, ...args) { if (this === null) { throw TypeError('对象不可为空'); } var o = Object(this); if (arguments.length < 1) { throw TypeError('开始位置参数不能为空'); }...