Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
The path-case npm package is used to convert strings to path case, which is a lowercase format with words separated by slashes. This is particularly useful for creating URL paths or file paths in a consistent format.
Convert string to path case
This feature converts a given string to path case, where each word is separated by a slash and all characters are in lowercase.
const pathCase = require('path-case');
const result = pathCase('Hello World');
console.log(result); // Output: 'hello/world'
The lodash.kebabcase package converts strings to kebab case, which is similar to path case but uses hyphens instead of slashes. It is part of the larger Lodash utility library, which offers a wide range of functions for manipulating arrays, objects, and strings.
The change-case package provides a variety of string case transformations, including camel case, snake case, and path case. It is a versatile library that can handle multiple case conversions, making it more comprehensive compared to path-case.
The param-case package converts strings to param case, which is similar to path case but uses hyphens instead of slashes. It is part of the change-case family of packages, which offers various string case transformations.
Path case a string.
Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString
property, numbers and booleans. Empty values (null
and undefined
) will result in an empty string.
npm install path-case --save
var pathCase = require('path-case');
pathCase('string'); //=> "string"
pathCase('camelCase'); //=> "camel/case"
pathCase('sentence case'); //=> "sentence/case"
pathCase('MY STRING', 'tr'); //=> "my.strıng"
MIT
FAQs
Transform into a lower case string with slashes between words
The npm package path-case receives a total of 6,286,537 weekly downloads. As such, path-case popularity was classified as popular.
We found that path-case 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.