/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libs/core/flags.rs
9 строк
368 B
Bartek Iwańczuk
chore: merge deno_core repo into main repo (#32353)
27 фев 2026, 21:25
Не верифицирован
27 фев 2026, 21:25
ad52a9f
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. /// Pass the command line arguments to v8. /// The first element of args (which usually corresponds to the binary name) is /// ignored. /// Returns a vector of command line arguments that V8 did not understand. pub fn v8_set_flags(args: Vec<String>) -> Vec<String> { v8::V8::set_flags_from_command_line(args) }