/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/v8_gypfiles/ForEachReplace.py
7 строк
252 B
Michaël Zasso
tools: sync gypfiles with V8 7.7
19 авг 2019, 10:26
Не верифицирован
19 авг 2019, 10:26
c206e74
Код
Авторство
О чём код?
# Copyright (c) 2019 Ujjwal Sharma <usharma1998@gmail>. All rights reserved. # Use of this source code is governed by an MIT-style license. def DoMain(args): old = args.pop(0) new = args.pop(0) return ' '.join(a.replace(old, new) for a in args)