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

scss-tokenizer

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scss-tokenizer - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

8

lib/previous-map.js

@@ -69,4 +69,6 @@ 'use strict';

value: function decodeInline(text) {
var utfd64 = 'data:application/json;charset=utf-8;base64,';
var utf64 = 'data:application/json;charset=utf8;base64,';
var b64 = 'data:application/json;base64,';
var uri = 'data:application/json,';
var base64 = 'data:application/json;base64,';

@@ -77,2 +79,6 @@ if (this.startWith(text, uri)) {

return _jsBase.Base64.decode(text.substr(base64.length));
} else if (this.startWith(text, utf64)) {
return _jsBase.Base64.decode(text.substr(utf64.length));
} else if (this.startWith(text, utfd64)) {
return _jsBase.Base64.decode(text.substr(utfd64.length));
} else {

@@ -79,0 +85,0 @@ var encoding = text.match(/data:application\/json;([^,]+),/)[1];

2

package.json
{
"name": "scss-tokenizer",
"version": "0.4.0",
"version": "0.4.1",
"description": "A tokenzier for Sass' SCSS syntax",

@@ -5,0 +5,0 @@ "main": "index.js",

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