使用 npm 和 Sublime Text 3 将终端上的默认浏览器更改为 chrome

时间:2021-03-27 02:44:28

标签: google-chrome npm npm-live-server

实时服务器转到 Microsoft Edge,我想要 Chrome。 npm 的站点告诉使用“--browser=BROWSER”进行更改,但它不起作用。

x <- NULL ## 0 bytes initialization used only as NULL
y <- vector('integer', 1000) ## 4048 bytes, initialized before loop the value will remain same after the loop ends
for(i in 1:1000){
  
  x[i] <- i
  y[i] <- obj_size(x[1:i])
}
y <- as.integer(y)

obj_size(x) ## 4048 bytes with length of x as 1000
objd_size(y) ## 4048 bytes with length of y as 1000

0 个答案:

没有答案