/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/scripts/cocoapods/__tests__/test_utils/XcodeprojMock.rb
21 строка
546 B
Phillip Pan
tests for ats settings (#38084)
28 июн 2023, 19:11
28 июн 2023, 19:11
d320334
Код
Авторство
О чём код?
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. module Xcodeproj class Plist @@path_to_file_mapping = Hash.new def self.read_from_path(path) return @@path_to_file_mapping[path] end def self.write_to_path(hash, path) @@path_to_file_mapping[path] = hash end def self.reset() @@path_to_file_mapping.clear end end end