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.
@bscotch/l10n-breaks
Advanced tools
Helpers for preprocessing text to determine linebreak locations.
There are lots of ways to determine where linebreaks in text could go, and that can vary a lot by language.
This package provides helpers for various linebreak cases.
Supported cases:
splitOnBreakpoints
breaks on ideographs while ensuring that punctuation is attached to the appropriate adjacent character, and splits non-CJ text on spaces and other punctuation (also attaching the punctuation to the appropriate side of the split).import { splitOnBreakpoints } from '@bscotch/l10n-breaks';
console.log(
splitOnBreakpoints(
'记得长大后学习怎么12345 hello。用锤子的时候,第一课就是学会站稳脚跟。如果站不稳,那就永远都打不准。有时候往往是那些微不足道的小事,能帮你重新找到立足点。',
),
);
Returns:
[
'记',
'得',
'长',
'大',
'后',
'学',
'习',
'怎',
'么',
'12345 ',
'hello。',
'用',
'锤',
'子',
'的',
'时',
'候,',
'第',
'一',
'课',
'就',
'是',
'学',
'会',
'站',
'稳',
'脚',
'跟。',
'如',
'果',
'站',
'不',
'稳,',
'那',
'就',
'永',
'远',
'都',
'打',
'不',
'准。',
'有',
'时',
'候',
'往',
'往',
'是',
'那',
'些',
'微',
'不',
'足',
'道',
'的',
'小',
'事,',
'能',
'帮',
'你',
'重',
'新',
'找',
'到',
'立',
'足',
'点。',
];
FAQs
Helpers for preprocessing text to determine linebreak locations.
The npm package @bscotch/l10n-breaks receives a total of 1 weekly downloads. As such, @bscotch/l10n-breaks popularity was classified as not popular.
We found that @bscotch/l10n-breaks 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.