New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dot-properties

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dot-properties - npm Package Compare versions

Comparing version 0.3.2 to 0.4.0

index.d.ts

16

package.json
{
"name": "dot-properties",
"version": "0.3.2",
"version": "0.4.0",
"main": "index.js",

@@ -17,3 +17,4 @@ "license": "MIT",

"files": [
"*.js"
"*.js",
"index.d.ts"
],

@@ -25,2 +26,3 @@ "scripts": {

"jest": {
"collectCoverage": true,
"testMatch": [

@@ -35,8 +37,8 @@ "**/tests/*.js"

"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2"
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1"
}
}

@@ -89,2 +89,7 @@ const atComment = (src, offset) => {

ch = src[offset]
if (ch === '\n' && src[offset - 1] === '\r') {
// escaped CRLF line terminator
offset += 1
ch = src[offset]
}
}

@@ -91,0 +96,0 @@ return offset

@@ -1,2 +0,2 @@

# dot-properties
# dot-properties <a href="https://www.npmjs.com/package/dot-properties"><img align="right" src="https://badge.fury.io/js/dot-properties.svg" title="npm package" /></a><a href="https://codecov.io/gh/eemeli/dot-properties"><img align="right" src="https://codecov.io/gh/eemeli/dot-properties/branch/master/graph/badge.svg" title="Code coverage" /></a><a href="https://travis-ci.org/eemeli/dot-properties"><img align="right" src="https://travis-ci.org/eemeli/dot-properties.svg?branch=master" title="Build status" /></a>

@@ -3,0 +3,0 @@ JavaScript `parse()` and `stringify()` for `.properties` (`text/x-java-properties`) files as defined in [java.util.Properties](https://docs.oracle.com/javase/9/docs/api/java/util/Properties.html#load-java.io.Reader-).

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