Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-autoprefixer

Package Overview
Dependencies
Maintainers
4
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-autoprefixer - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

11

index.js
'use strict';
var Filter = require('broccoli-filter');
var Filter = require('broccoli-persistent-filter');
var objectAssign = require('object-assign');

@@ -7,11 +7,12 @@ var postcss = require('postcss');

function AutoprefixerFilter(inputTree, options) {
function AutoprefixerFilter(inputTree, _options) {
var options = _options || {};
if (!(this instanceof AutoprefixerFilter)) {
return new AutoprefixerFilter(inputTree, options);
return new AutoprefixerFilter(inputTree, _options);
}
Filter.call(this, inputTree);
Filter.call(this, inputTree, options);
this.inputTree = inputTree;
this.options = options || {};
this.options = options;
}

@@ -18,0 +19,0 @@

{
"name": "broccoli-autoprefixer",
"version": "4.0.0",
"version": "4.1.0",
"description": "Prefix CSS using Autoprefixer",

@@ -34,3 +34,3 @@ "license": "MIT",

"autoprefixer": "^6.0.0",
"broccoli-filter": "^1.2.2",
"broccoli-persistent-filter": "^1.1.6",
"object-assign": "^4.0.1",

@@ -37,0 +37,0 @@ "postcss": "^5.0.4"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc