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

@phantomstudios/ft-lib

Package Overview
Dependencies
Maintainers
3
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phantomstudios/ft-lib - npm Package Compare versions

Comparing version 0.3.0-rc6 to 0.3.0-rc7

6

lib/utils/yupValidator.js

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

//transform passed values to first character uppercase and replace spaces with underscores
var unifyValuesTransform = function (value, ifTransform) {
if (ifTransform === void 0) { ifTransform = true; }
if (!ifTransform)
var unifyValuesTransform = function (value, disableTransform) {
if (disableTransform === void 0) { disableTransform = false; }
if (disableTransform)
return value;

@@ -12,0 +12,0 @@ return (value.trim().charAt(0).toUpperCase() +

{
"name": "@phantomstudios/ft-lib",
"description": "A collection of Javascript UI & tracking utils for FT sites",
"version": "0.3.0-rc6",
"version": "0.3.0-rc7",
"main": "lib/index.js",

@@ -6,0 +6,0 @@ "types": "lib/index.d.ts",

@@ -14,4 +14,4 @@ import {

//transform passed values to first character uppercase and replace spaces with underscores
const unifyValuesTransform = (value: string, ifTransform = true) => {
if (!ifTransform) return value;
const unifyValuesTransform = (value: string, disableTransform = false) => {
if (disableTransform) return value;
return (

@@ -18,0 +18,0 @@ value.trim().charAt(0).toUpperCase() +

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