فهرست منبع

chore(runtime-vapor): normalize side effects annotations

daiwei 3 ماه پیش
والد
کامیت
8d5b15582f
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      packages/runtime-vapor/src/dom/node.ts

+ 1 - 2
packages/runtime-vapor/src/dom/node.ts

@@ -21,12 +21,11 @@ export function querySelector(selectors: string): Element | null {
   return document.querySelector(selectors)
 }
 
-/*! @__NO_SIDE_EFFECTS__ */
+/* @__NO_SIDE_EFFECTS__ */
 export function parentNode(node: Node): ParentNode | null {
   return node.parentNode
 }
 
-/* @__NO_SIDE_EFFECTS__ */
 const _txt: typeof _child = _child
 
 /**