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

@citation-js/plugin-ris

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@citation-js/plugin-ris - npm Package Compare versions

Comparing version 0.5.0-alpha.2 to 0.5.0-alpha.3

8

lib-mjs/ris.js

@@ -54,5 +54,9 @@ import { util } from '@citation-js/core';

for (let line of text.split('\n')) {
for (let line of text.split(/\r?\n/)) {
if (!LINE_MATCH.test(line)) {
lastEntry[lastTag] += line;
if (lastEntry && lastTag) {
lastEntry[lastTag] += ' ' + line.trim();
}
continue;
}

@@ -59,0 +63,0 @@

@@ -72,5 +72,9 @@ "use strict";

for (let line of text.split('\n')) {
for (let line of text.split(/\r?\n/)) {
if (!LINE_MATCH.test(line)) {
lastEntry[lastTag] += line;
if (lastEntry && lastTag) {
lastEntry[lastTag] += ' ' + line.trim();
}
continue;
}

@@ -77,0 +81,0 @@

{
"name": "@citation-js/plugin-ris",
"version": "0.5.0-alpha.2",
"version": "0.5.0-alpha.3",
"description": "Plugin for RIS formats for Citation.js",

@@ -37,8 +37,8 @@ "keywords": [

"devDependencies": {
"@citation-js/core": "^0.5.0-alpha.2"
"@citation-js/core": "^0.5.0-alpha.3"
},
"peerDependencies": {
"@citation-js/core": "^0.4.0-rc.0"
"@citation-js/core": "^0.5.0-alpha.0"
},
"gitHead": "669be81e86a7847a3f2c2b4da95b9a62b0f11729"
"gitHead": "dacc48b278edbb7ea6be4415366a4ffc4d9e85a9"
}
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