UNPKG

981 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8function _path() {
9 const data = _interopRequireDefault(require("path"));
10
11 _path = function () {
12 return data;
13 };
14
15 return data;
16}
17
18var _assetPathUtils = _interopRequireDefault(require("./assetPathUtils"));
19
20function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
22/**
23 * Copyright (c) Facebook, Inc. and its affiliates.
24 *
25 * This source code is licensed under the MIT license found in the
26 * LICENSE file in the root directory of this source tree.
27 *
28 */
29function getAssetDestPathAndroid(asset, scale) {
30 const androidFolder = _assetPathUtils.default.getAndroidResourceFolderName(asset, scale);
31
32 const fileName = _assetPathUtils.default.getAndroidResourceIdentifier(asset);
33
34 return _path().default.join(androidFolder, `${fileName}.${asset.type}`);
35}
36
37var _default = getAssetDestPathAndroid;
38exports.default = _default;
\No newline at end of file