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

clockvine

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clockvine - npm Package Compare versions

Comparing version

to
2.0.0-alpha.7

src/SingletonUrlFormatter.js

2

package.json
{
"name": "clockvine",
"version": "2.0.0-alpha.6",
"version": "2.0.0-alpha.7",
"description": "",

@@ -5,0 +5,0 @@ "author": "Kevin Hamer [kh] <kevin@imarc.com>",

export { default as DefaultUrlFormatter } from './DefaultUrlFormatter.js'
export { default as JsonApi } from './JsonApi.js'
export { default as JsonSingletonApi } from './JsonSingletonApi.js'
export { default as SingletonUrlFormatter } from './SingletonUrlFormatter.js'
export { default as UrlFormatter } from './UrlFormatter.js'
export { default as XsrfFetch } from './XsrfFetch.js'
export { default as defineApiStore } from './defineApiStore.js'

@@ -1,3 +0,1 @@

import { unref, isRef, isReactive } from 'vue'
const filterKeys = (obj, remove = [null, undefined]) => {

@@ -4,0 +2,0 @@ return Object.fromEntries(Object.entries(obj).filter(([_, v]) => !remove.includes(v)))

@@ -1,16 +0,6 @@

export default function JsonApi (baseUrl) {
const createQueryUrl = function (action) {
if (['show', 'update', 'destroy'].includes(action)) {
return baseUrl
} else {
throw new Error(`Invalid action ${action} on JsonSingletonApi endpoint.`)
}
}
import SingletonUrlFormatter from './SingletonUrlFormatter.js'
import JsonApi from './JsonApi.js'
this.key = createQueryUrl
this.show = async function (id) {
const url = createQueryUrl('show', id)
return fetch(url).then(r => r.json()).then(r => r.data)
}
export default function JsonSingletonApi (baseUrl, options) {
return new JsonApi(baseUrl, { ...options, Formatter: SingletonUrlFormatter })
}