Skip to content

Commit 2f1a1ba

Browse files
committed
Remove redundant var declaration.
1 parent 160495d commit 2f1a1ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ module.exports = function(css, options){
271271
var vendor = m[1];
272272

273273
// identifier
274-
var m = match(/^([-\w]+)\s*/);
274+
m = match(/^([-\w]+)\s*/);
275275
if (!m) return error("@keyframes missing name");
276276
var name = m[1];
277277

0 commit comments

Comments
 (0)