We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b735f commit ff861f6Copy full SHA for ff861f6
index.js
@@ -123,18 +123,18 @@ function createNaming(options) {
123
var res = obj.block;
124
125
if (obj.elem) {
126
- res += this.elemDelim + obj.elem;
+ res += delims.elem + obj.elem;
127
}
128
129
if (obj.modName) {
130
var modVal = obj.modVal;
131
132
if (modVal || modVal === 0 || !obj.hasOwnProperty('modVal')) {
133
- res += this.modDelim + obj.modName;
+ res += delims.mod.name + obj.modName;
134
135
136
if (modVal && modVal !== true) {
137
- res += this.modValDelim + modVal;
+ res += delims.mod.val + modVal;
138
139
140
0 commit comments