public static bool TryIsolate(this SciterValue sciterValue)
 {
     return(sciterValue?.TryIsolateInternal() == true);
 }
 public static SciterValue Isolate(this SciterValue sciterValue)
 {
     sciterValue?.TryIsolateInternal();
     return(sciterValue);
 }