Comparing version 0.2.0 to 0.2.1
@@ -116,5 +116,5 @@ 'use strict'; | ||
}; | ||
return [element].concat(_toConsumableArray(suffixes.filter(isModifier).map(prefix)), _toConsumableArray(suffixes.filter(negate(isSuffix)))).join(' '); | ||
return [element].concat(_toConsumableArray(suffixes.filter(isModifier).map(prefix)), _toConsumableArray(suffixes.filter(negate(isSuffix)))).join(' ').trim(); | ||
}); | ||
exports.default = bemify; |
{ | ||
"name": "bemify-js", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Simple BEM prefixing of CSS classes", | ||
@@ -5,0 +5,0 @@ "main": "lib/bemify.js", |
@@ -73,5 +73,5 @@ // Really simple curry function that only supports up to two arguments. | ||
...suffixes.filter(negate(isSuffix)), | ||
].join(' '); | ||
].join(' ').trim(); | ||
}); | ||
export default bemify; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16600