Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
patches --VERIFIED
Browse files Browse the repository at this point in the history
  • Loading branch information
knighttower committed Feb 2, 2024
1 parent 064c4cc commit c0f3031
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/amd/TypeCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ define(['exports'], (function (exports) { 'use strict';
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down
2 changes: 1 addition & 1 deletion dist/browser/TypeCheck.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/TypeCheck.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ function getSettings(input) {
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/TypeCheck.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ function getSettings(input) {
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down
2 changes: 1 addition & 1 deletion dist/iife/TypeCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ var TypeCheck = (function (exports) {
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down
2 changes: 1 addition & 1 deletion dist/system/TypeCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ System.register('TypeCheck', [], (function (exports) {
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down
2 changes: 1 addition & 1 deletion dist/umd/TypeCheck.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knighttower/type-check-js",
"version": "4.1.1",
"version": "4.1.2",
"type": "module",
"description": "TypeCheck JS",
"main": "index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion src/TypeCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ function getSettings(input) {
function typeError(inputVal) {
const errorLog = typeErrorLogs[typeErrorLogs.length - 1];
console.log('\n::::::::::::: Type error or not valid ::::::::::::::');
console.log('Input Value used: ', String(inputVal));
console.log('Input Value used: ', inputVal);
console.log('---> Value Found:', errorLog.found);
console.log('---> Test Permormed:', errorLog.tests);
//clean the array of error logs
Expand Down

0 comments on commit c0f3031

Please sign in to comment.