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

gitlab-cli

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlab-cli - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

lib/utils.js

6

lib/parser/dataParser.js
var defaults = require('../defaults');
var split = require('../utils').split;

@@ -6,3 +7,4 @@ function parseMessage(argv, data)

if (argv['m']) {
var message = argv.m.split("\n",2);
var message = split(argv.m, "\n", 2);
if (message.length >= 1) {

@@ -48,3 +50,3 @@ data.title = message[0].trim();

_data.forEach(function(__data, i) {
_data[i] = __data.split('=', 2);
_data[i] = split( __data, '=', 2);

@@ -51,0 +53,0 @@ if (_data[i].length < 2) {

var defaults = require('../defaults');
var split = require('../utils').split;

@@ -20,3 +21,3 @@ function parse(argv)

_filters.forEach(function(_filter, i) {
_filters[i] = _filter.split('=', 2);
_filters[i] = split(_filter, '=', 2);

@@ -23,0 +24,0 @@ if (_filters[i].length < 2) {

var defaults = require('../defaults');
var split = require('../utils').split;

@@ -17,3 +18,3 @@ function parse(argv, aliases)

_resource = _resource.split('/', 4);
_resource = split(_resource, '/', 4);

@@ -20,0 +21,0 @@

{
"name": "gitlab-cli",
"version": "0.0.9",
"version": "0.0.10",
"description": "Gitlab API on the command line",

@@ -5,0 +5,0 @@ "main": "./bin/cli.js",

Sorry, the diff of this file is not supported yet

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