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

razorleaf

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

razorleaf - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

2

package.json
{
"name": "razorleaf",
"version": "1.1.1",
"version": "1.2.0",
"main": "razorleaf.js",

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

@@ -117,2 +117,6 @@ "use strict";

if(c === "#") {
return states.comment;
}
if(c === "\"") {

@@ -158,4 +162,13 @@ this.context = {

},
comment: function(c) {
if(c === "\n") {
this.indent = 0;
return states.indent;
}
return states.comment;
},
indent: function(c) {
if(c === "\n") {
this.indent = 0;
return states.indent;

@@ -162,0 +175,0 @@ }

@@ -117,2 +117,7 @@ [![Build Status](https://travis-ci.org/campersander/razorleaf.png)](https://travis-ci.org/campersander/razorleaf)

### Comments
Comments begin with `#` and continue to the end of the line. They do not affect
the rendered HTML.
### Special blocks

@@ -119,0 +124,0 @@

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