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

schema-llama

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

schema-llama - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

2

dist/index.js

@@ -28,3 +28,3 @@ 'use strict';

const constructorHelper = function (props, ...args) {
if (!props || props.constructor !== Object) {
if (!props || typeof props != 'object') {
return;

@@ -31,0 +31,0 @@ }

{
"name": "schema-llama",
"version": "0.0.9",
"version": "0.0.10",
"description": "A more purely javascript es6 class generator. Takes the work out of validation, type checking, and more.",

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

# Schema-Llama
```
npm install --save schema-llama@0.0.9
npm install --save schema-llama@0.0.8
```

@@ -5,0 +5,0 @@ ## TOC

@@ -22,3 +22,3 @@ import { TypeError, ValidationError, Error } from './errors';

const constructorHelper = function(props, ...args) {
if(!props || props.constructor !== Object) { return; }
if(!props || typeof props != 'object') { return; }
const propKeys = Object.keys(props);

@@ -25,0 +25,0 @@ for(const key of propKeys) {

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