extes
Version:
A tiny library that extends native js with some handy tools
20 lines (18 loc) • 390 B
JavaScript
/**
* Author: JCloudYu
* Create: 2019/08/28
**/
const configurable = true, writable = true, enumerable = false;
//@export
(()=>{
if ( typeof HTMLInputElement !== "undefined" ) {
Object.defineProperty( HTMLInputElement.prototype, 'setValue', {
configurable, writable, enumerable,
value: function(value) {
this.value = value;
return this;
}
});
}
})();
//@endexport