Socket
Socket
Sign inDemoInstall

postcss-url

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-url - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 1.2.1 - 2014-12-09
- Data URIs are ignored correctly ([#15](https://github.com/postcss/postcss-url/pull/15))
# 1.2.0 - 2014-12-04

@@ -2,0 +6,0 @@

4

index.js

@@ -55,4 +55,4 @@ /**

// ignore absolute url
if (/^(?:[a-z]+:\/)?\//.test(value)) {
// ignore absolute urls or data uris
if (/^(?:[a-z]+:\/|data:.*)?\//.test(value)) {
return createUrl(quote, value);

@@ -59,0 +59,0 @@ }

{
"name": "postcss-url",
"version": "1.2.0",
"version": "1.2.1",
"description": "PostCSS plugin to rebase or inline on url().",

@@ -5,0 +5,0 @@ "keywords": [

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