Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
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
The npm package ilib-casemapper receives a total of 3 weekly downloads. As such, ilib-casemapper popularity was classified as not popular.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.