Remove Characters from All Keys in an Object (Lodash OK)
问题 I have a bothersome length of characters before all keys in this object. Since they are all the same, I would like to do a .map() or forEach() or something with a .slice() in it to remove the first n characters. How is this done to all keys in the object? I should say that we are already importing Lodash in the project so I can use that. So I need to turn this: { 'remove.this.string.a': "apple", 'remove.this.string.b': "banana", 'remove.this.string.c': "carrot", 'remove.this.string.d':