(source, str)
| 30 | }; |
| 31 | |
| 32 | export const postfix = (source, str) => { |
| 33 | if (typeof str !== "string") { |
| 34 | throw new Error("Cannot postfix a non-string value."); |
| 35 | } |
| 36 | |
| 37 | return `${source}${str}`; |
| 38 | }; |
| 39 | |
| 40 | /** |
| 41 | * @param {string} str |
no outgoing calls
no test coverage detected