Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ilib-casemapper
Advanced tools
Map a string to upper- or lower-case locale-sensitively.
Many people don't realize that case mapping is a locale-sensitive operation. The fact is, what the upper-case version of a particular letter is depends on who you ask!
npm install ilib-casemapper
or
yarn add ilib-casemapper
To map the case of a letter, you first create an instance of the CaseMapper class. By default, this will use the mappings for English.
Here is how you would map a letter using the Turkish rules:
ES2015:
var CaseMapper = require("ilib-casemapper");
var cm = new CaseMapper({locale: "tr-TR"});
var upper = cm.map('i'); // "upper" should now contain "İ"
ES6:
import CaseMapper from "ilib-casemapper";
const cm = new CaseMapper({locale: "tr-TR"});
const upper = cm.map('i'); // "upper" should now contain "İ"
In general, you should be able to use the case mapper in older Javascript engines by requiring it, or in modern Javascript engines by importing it. The package was built to be able to support both. From here on, we will only give modern JS examples.
Here is how you use the case mapper to lower:
import CaseMapper from "ilib-casemapper";
const cm = new CaseMapper({
locale: "tr-TR",
direction: "lower"
});
const upper = cm.map('İ'); // "upper" should now contain "i"
Full documentation: CaseMapper class
Copyright © 2023, JEDLSoft
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
FAQs
A locale-sensitive class to map strings to upper- or lower-case
We found that ilib-casemapper demonstrated a healthy version release cadence and project activity because the last version was released less than 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.