/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native-codegen/src/generators/modules/GenerateModuleObjCpp/Utils.js
32 строки
673 B
Andres Suarez
Update copyright headers from Facebook to Meta
31 дек 2021, 02:11
31 дек 2021, 02:11
8bd3ede
Код
Авторство
О чём код?
/** * 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. * * @flow strict * @format */ 'use strict'; import type {StructProperty} from './StructCollector'; function getSafePropertyName(property: StructProperty): string { if (property.name === 'id') { return `${property.name}_`; } return property.name; } function getNamespacedStructName( hasteModuleName: string, structName: string, ): string { return `JS::${hasteModuleName}::${structName}`; } module.exports = { getSafePropertyName, getNamespacedStructName, };