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

@randajan/jet-core

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@randajan/jet-core - npm Package Compare versions

Comparing version 3.2.14 to 3.2.15

5

dist/index.js

@@ -747,3 +747,3 @@ var __defProp = Object.defineProperty;

create: Boolean,
rnd: (trueRatio) => Math.random() < (trueRatio || 0.5),
rnd: (trueRatio = 0.5) => Math.random() < trueRatio,
to: {

@@ -919,2 +919,5 @@ Function: (bol) => (_) => bol

capitalize: (str) => str.charAt(0).toUpperCase() + str.slice(1),
camelCase: (str) => str.replace(/[^a-zA-Z0-9]+/g, " ").trim().split(" ").map((s, i) => i ? String.jet.capitalize(s) : s).join(""),
pascalCase: (str) => str.replace(/[^a-zA-Z0-9]+/g, " ").trim().split(" ").map((s) => String.jet.capitalize(s)).join(""),
snakeCase: (str) => str.replace(/[^a-zA-Z0-9]+/g, " ").trim().replaceAll(" ", "_"),
delone: (str) => {

@@ -921,0 +924,0 @@ let r = "";

2

package.json
{
"name": "@randajan/jet-core",
"version": "3.2.14",
"version": "3.2.15",
"description": "Ecosystem of types and related usefull tools.",

@@ -5,0 +5,0 @@ "repository": "randajan/jet-core",

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