Skip to content

Commit

Permalink
Merge pull request #24 from focusaurus/fix-global-leak
Browse files Browse the repository at this point in the history
fix leaked global var
  • Loading branch information
Jeff Escalante committed Jul 14, 2015
2 parents e131d6b + 8d4ff5d commit 7278d37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -11,7 +11,7 @@ var ap = require('autoprefixer-core'),
* - Returns a function for stylus to use
* - This function uses the `end` event, and runs autoprefixer on
* the css, applying any arguments if present
*
*
* @return {Function} - stylus plugin function
*/

Expand All @@ -25,7 +25,7 @@ module.exports = function(opts) {
style.on('end', function(err, css){

// configure the options to be passed to autoprefixer
process_opts = {
var process_opts = {
from: filename,
to: path.join(
path.dirname(filename),
Expand Down

0 comments on commit 7278d37

Please sign in to comment.