Avatar
omochimetaru 4/2/2024 2:47 PM
public static func construct(from value: JSValue) -> Self? { switch value { case .object(let x): return x as? Self case .function(let x): return x as? Self default: return nil } }
2:48 PM
この as? が不安になるんだけど考え中