We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7df808 commit 5c580f3Copy full SHA for 5c580f3
1 file changed
apijson/JSONResponse.js
@@ -221,7 +221,8 @@ var JSONResponse = {
221
* @return
222
*/
223
formatAt(key) {
224
- return key.startsWith("@") ? key.substring(1) : key;
+ var k = key.startsWith("@") ? key.substring(1) : key;
225
+ return k.endsWith("@") ? k.substring(0, k.length - 1) : k;
226
},
227
/**key:alias => alias
228
* @param key
0 commit comments