
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Small utility to convert between camel-case, snake-case, kebab-case and more.
kase is a simple function for converting between common cases used in code.
Supporting:
or any custom seperator string you choose (eg. '@').
var {kase} = require('kase')
// import {kase} from 'kase' // If you're using es modules.
var str = 'testCase'
str = kase(str, 'camel', 'kebab')
console.log(str)
// or
str = 'testCase'
str = kase(str, 'snake')
console.log(str)
// or custom seperator
str = 'testCase'
str = kase(str, '@')
console.log(str)
'test-case'
'test_case'
'test@case'
Convert str
from from
case style to to
case style, return the modified str
.
str
- the string to convert.from
- the case to convert from, will only match seperators in this specific style, can be:
to
- the case to convert to, can be:
'@'
.Convert str
to to
case style, from
is automatically set to any
, return the modified str
.
FAQs
Small utility to convert between camel-case, snake-case, kebab-case and more.
The npm package kase receives a total of 8 weekly downloads. As such, kase popularity was classified as not popular.
We found that kase demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.