You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As explained in yeoman/yeoman#716, although the underscore.string, classify method is thought to transform a string into a class name it is not safe enough as it does not handle non-alphanum characters.
For example, "this is.my.wonderfull.class" will produce ThisIs.My.Wonderfull.Class, which is not a class name (the .), although we would prefer to get ThisIsMyWonderfullClass.
The text was updated successfully, but these errors were encountered:
As explained in yeoman/yeoman#716, although the
underscore.string
,classify
method is thought to transform a string into a class name it is not safe enough as it does not handle non-alphanum characters.For example,
"this is.my.wonderfull.class"
will produceThisIs.My.Wonderfull.Class
, which is not a class name (the.
), although we would prefer to getThisIsMyWonderfullClass
.The text was updated successfully, but these errors were encountered: