/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libs/core/examples/snapshot/src/runtime.js
10 строк
312 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. /** * This module provides the JavaScript interface atop calls to the Rust ops. */ // Minimal example, just passes arguments through to Rust: export function callRust(stringValue) { const { op_call_rust } = Deno.core.ops; op_call_rust(stringValue); }