Convert hyphens to camel case (camelCase)

后端 未结 13 1857
梦谈多话
梦谈多话 2020-12-04 08:02

With regex (i assume) or some other method, how can i convert things like:

marker-image or my-example-setting to markerImage o

13条回答
  •  死守一世寂寞
    2020-12-04 08:23

    This is one of the great utilities that Lodash offers if you are enlightened and have it included in your project.

    var str = 'my-hyphen-string';
    str = _.camelCase(str);
    // results in 'myHyphenString'
    

提交回复
热议问题