* @param {string} input * @param {string} prefix * @return {*} TODO(#23582): Specify return type
(input, prefix)
| 113 | * @return {*} TODO(#23582): Specify return type |
| 114 | */ |
| 115 | function stripPrefixCamelCase(input, prefix) { |
| 116 | const stripped = input.replace(new RegExp('^' + prefix), ''); |
| 117 | return stripped.charAt(0).toLowerCase() + stripped.substr(1); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /** |