簡體   English   中英

備份導入 JS 模塊

[英]Backup Import JS Module

我想讓 package 成為對等依賴項,如果導入的模塊不存在,則對其進行備份

import { Bar } from 'foo';

const SafeBar = () => {};

if (Bar === undefined) {
  Bar = SafeBar
}

當我嘗試這樣做時,這對我來說是錯誤的

我使用了 typeof 並做了一個三元

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM