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
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.indexFs = exports.splitTwoLevels = void 0;
|
|
function splitTwoLevels(functionName) {
|
|
const memberParts = functionName.split('.');
|
|
if (memberParts.length > 1) {
|
|
if (memberParts.length !== 2)
|
|
throw Error(`Invalid member function name ${functionName}`);
|
|
return memberParts;
|
|
}
|
|
else {
|
|
return [functionName];
|
|
}
|
|
}
|
|
exports.splitTwoLevels = splitTwoLevels;
|
|
function indexFs(fs, member) {
|
|
if (!member)
|
|
throw new Error(JSON.stringify({ member }));
|
|
const splitResult = splitTwoLevels(member);
|
|
const [functionName1, functionName2] = splitResult;
|
|
if (functionName2) {
|
|
return {
|
|
objectToPatch: fs[functionName1],
|
|
functionNameToPatch: functionName2,
|
|
};
|
|
}
|
|
else {
|
|
return {
|
|
objectToPatch: fs,
|
|
functionNameToPatch: functionName1,
|
|
};
|
|
}
|
|
}
|
|
exports.indexFs = indexFs;
|
|
//# sourceMappingURL=utils.js.map |