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

couchdb-services

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couchdb-services - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

16

index.js

@@ -28,3 +28,3 @@ let moduleConnector = require("module-connector");

CouchDBServices.prototype.createDabase = async(strDatabaseName) => {
CouchDBServices.prototype.createDabase = async function(strDatabaseName) {
let output = new moduleConnector();

@@ -44,3 +44,3 @@ try {

CouchDBServices.prototype.get = async(idDoc) => {
CouchDBServices.prototype.get = async function(idDoc) {
let output = new moduleConnector();

@@ -61,3 +61,3 @@ try {

CouchDBServices.prototype.getAll = async(arrayQuery = { mangoQuery: { selector: {}, limit: 1000 } }, arrayIndex = false) => {
CouchDBServices.prototype.getAll = async function(arrayQuery = { mangoQuery: { selector: {}, limit: 1000 } }, arrayIndex = false) {
let output = new moduleConnector();

@@ -82,3 +82,3 @@ try {

CouchDBServices.prototype.create = async(newDoc) => {
CouchDBServices.prototype.create = async function(newDoc) {
let output = new moduleConnector();

@@ -99,3 +99,3 @@ try {

CouchDBServices.prototype.update = async(doc) => {
CouchDBServices.prototype.update = async function(doc) {
let output = new moduleConnector();

@@ -116,3 +116,3 @@ try {

CouchDBServices.prototype.delete = async(doc) => {
CouchDBServices.prototype.delete = async function(doc) {
let output = new moduleConnector();

@@ -134,3 +134,3 @@ try {

CouchDBServices.prototype.view = async(designname, viewname, params) => {
CouchDBServices.prototype.view = async function(designname, viewname, params) {
let output = new moduleConnector();

@@ -156,3 +156,3 @@ try {

CouchDBServices.prototype.bulk = async(arrayDocs) => {
CouchDBServices.prototype.bulk = async function(arrayDocs) {
let output = new moduleConnector();

@@ -159,0 +159,0 @@ try {

{
"name": "couchdb-services",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -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