UNPKG

@moomfe/zenjs

Version:

ZenJS 是一个高性能的 JavaScript 工具库。

12 lines (10 loc) 395 B
import inBrowser from "../../../shared/const/inBrowser"; import defineValue from "../../../shared/util/defineValue"; import ElementProto from "../../../shared/global/DomElement/prototype/index"; if( inBrowser ){ defineValue( ElementProto, '$replaceWith $replace', function( elem, parent ){ if( parent = this.parentNode ){ parent.replaceChild( elem, this ); } }); }