UNPKG

834 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
18function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19
20/**
21 * Copyright (c) Facebook, Inc. and its affiliates.
22 *
23 * This source code is licensed under the MIT license found in the
24 * LICENSE file in the root directory of this source tree.
25 *
26 */
27function getAssetDestPathIOS(asset, scale) {
28 const suffix = scale === 1 ? '' : `@${scale}x`;
29 const fileName = `${asset.name + suffix}.${asset.type}`;
30 return _path().default.join(asset.httpServerLocation.substr(1), fileName);
31}
32
33var _default = getAssetDestPathIOS;
34exports.default = _default;
\No newline at end of file