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
21 lines
725 B
Plaintext
21 lines
725 B
Plaintext
/**
|
|
* Sanitizes REST select query to SelectType
|
|
*/ export const sanitizeSelectParam = (unsanitizedSelect)=>{
|
|
if (unsanitizedSelect && typeof unsanitizedSelect === 'object') {
|
|
for(const _k in unsanitizedSelect){
|
|
const k = _k;
|
|
if (unsanitizedSelect[k] === 'true') {
|
|
;
|
|
unsanitizedSelect[k] = true;
|
|
} else if (unsanitizedSelect[k] === 'false') {
|
|
;
|
|
unsanitizedSelect[k] = false;
|
|
} else if (typeof unsanitizedSelect[k] === 'object') {
|
|
sanitizeSelectParam(unsanitizedSelect[k]);
|
|
}
|
|
}
|
|
}
|
|
return unsanitizedSelect;
|
|
};
|
|
|
|
//# sourceMappingURL=sanitizeSelectParam.js.map |