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

tv4

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tv4 - npm Package Compare versions

Comparing version 1.2.7 to 1.3.0

lang/es.js

0

lang/de.js

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ (function (global) {

@@ -0,0 +0,0 @@ /*

26

package.json
{
"name": "tv4",
"version": "1.2.7",
"version": "1.3.0",
"author": "Geraint Luff",

@@ -24,3 +24,3 @@ "description": "A public domain JSON Schema validator for JavaScript",

},
"license:": [
"license": [
{

@@ -37,20 +37,20 @@ "type": "Public Domain",

"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-component-io": "~0.1.0",
"grunt-concat-sourcemap": "~0.2",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-jshint": "~0.6.2",
"mocha": "~1.11.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-markdown": "~0.3.0",
"grunt-mocha": "~0.4",
"grunt-mocha-test": "~0.5.0",
"grunt-cli": "~0.1.9",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-copy": "~0.4.1",
"proclaim": "1.4",
"mocha-unfunk-reporter": "~0.2",
"jshint-path-reporter": "~0.1",
"grunt-concat-sourcemap": "~0.2",
"source-map-support": "~0.1",
"grunt-markdown": "~0.3.0",
"grunt-push-release": "~0.1.1",
"grunt-regex-replace": "~0.2.5",
"jshint-path-reporter": "~0.1",
"mocha": "~1.11.0",
"mocha-unfunk-reporter": "~0.2",
"proclaim": "1.4",
"requirejs": "~2.1.11",
"grunt-component-io": "~0.1.0"
"source-map-support": "~0.1"
},

@@ -57,0 +57,0 @@ "engines": {

@@ -83,3 +83,3 @@ # Tiny Validator (for v4 JSON Schema)

`validationFailure` is simply taken from `tv4.error`.
`validationError` is simply taken from `tv4.error`.

@@ -86,0 +86,0 @@ ## Cyclical JavaScript objects

@@ -0,0 +0,0 @@ // Provides support for asynchronous validation (fetching schemas) using jQuery

@@ -1583,3 +1583,5 @@ /*

validateResult: function () {
var result = {};
var result = {toString: function () {
return this.valid ? 'valid' : this.error.message;
}};
this.validate.apply(result, arguments);

@@ -1602,3 +1604,5 @@ return result;

}
var result = {};
var result = {toString: function () {
return this.valid ? 'valid' : this.error.message;
}};
result.errors = context.errors;

@@ -1605,0 +1609,0 @@ result.missing = context.missing;

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