UNPKG

@react-native/codegen

Version:
24 lines (21 loc) 625 B
/** * 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. * * * @format */ 'use strict'; const {serializeConstantsStruct} = require('./serializeConstantsStruct'); const {serializeRegularStruct} = require('./serializeRegularStruct'); function serializeStruct(hasteModuleName, struct) { if (struct.context === 'REGULAR') { return serializeRegularStruct(hasteModuleName, struct); } return serializeConstantsStruct(hasteModuleName, struct); } module.exports = { serializeStruct, };