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

@thisisagile/easy

Package Overview
Dependencies
Maintainers
2
Versions
1276
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thisisagile/easy - npm Package Compare versions

Comparing version 1.3.4 to 1.3.5

1

dist/types/Json.d.ts

@@ -5,1 +5,2 @@ export declare type JsonValue = string | number | boolean | null | Json | JsonValue[];

};
export declare const jsonify: (subject?: unknown, additional?: Json) => Json;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.jsonify = void 0;
exports.jsonify = (subject = {}, additional) => ({ ...(JSON.parse(JSON.stringify(subject))), ...additional });
//# sourceMappingURL=Json.js.map

2

package.json
{
"name": "@thisisagile/easy",
"version": "1.3.4",
"version": "1.3.5",
"description": "Straightforward library for building domain-driven microservice architectures",

@@ -5,0 +5,0 @@ "author": "Sander Hoogendoorn",

export type JsonValue = string | number | boolean | null | Json | JsonValue[];
export type Json = { [key: string]: JsonValue };
export const jsonify = (subject: unknown = {}, additional?: Json): Json =>
({ ...(JSON.parse(JSON.stringify(subject))), ...additional });

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