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

@xapp/dynamo-service

Package Overview
Dependencies
Maintainers
5
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xapp/dynamo-service - npm Package Compare versions

Comparing version 0.1.14 to 0.2.0

xapp-dynamo-service-0.1.14.tgz

9

CHANGELOG.md

@@ -5,2 +5,11 @@ # Changelog

## [0.2.0](https://github.com/XappMedia/dynamo-service/compare/v0.1.14...v0.2.0) (2019-06-03)
### Features
* Allowing date converters to be a string or number ([668d369](https://github.com/XappMedia/dynamo-service/commit/668d369))
### [0.1.14](https://github.com/XappMedia/dynamo-service/compare/v0.1.13...v0.1.14) (2019-05-23)

@@ -7,0 +16,0 @@

4

dist/service/Converters/DateConverters.js

@@ -5,3 +5,3 @@ "use strict";

toObj(date) {
return (date) ? date.toISOString() : undefined;
return (date) ? new Date(date).toISOString() : undefined;
},

@@ -14,3 +14,3 @@ fromObj(obj) {

toObj(date) {
return (date) ? date.getTime() : undefined;
return (date) ? new Date(date).getTime() : undefined;
},

@@ -17,0 +17,0 @@ fromObj(obj) {

{
"name": "@xapp/dynamo-service",
"version": "0.1.14",
"version": "0.2.0",
"description": "A dynamo help class which will help maintain data integrity.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is too big to display

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