Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
534 B
Plaintext
19 lines
534 B
Plaintext
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = createFlowUnionType;
|
|
var _index = require("../generated/index.js");
|
|
var _removeTypeDuplicates = require("../../modifications/flow/removeTypeDuplicates.js");
|
|
function createFlowUnionType(types) {
|
|
const flattened = (0, _removeTypeDuplicates.default)(types);
|
|
if (flattened.length === 1) {
|
|
return flattened[0];
|
|
} else {
|
|
return (0, _index.unionTypeAnnotation)(flattened);
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=createFlowUnionType.js.map
|