New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

io.github.projectclean:deconfuse

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

io.github.projectclean:deconfuse

DeConfuse is a java librabry which convert confusable unicode characters(similar looking character) or string to english alphabets/strings.

Source
mavenMaven Central
Version
0.1.1
Version published
Maintainers
1
Source

DeConfuse

logo

Java 11 Java 11 Java 11 Unit tests

About

De confuse is a java librabry which convert confusable unicode characters(similar looking character) or string to english alphabets/strings.

Using

Adding as dependency

  • For gradle: add following to your build.gradle file.
implementation 'io.github.projectclean:deconfuse-0.1.1'
  • For Maven: add the following
<dependency>
  <groupId>io.github.projectclean</groupId>
  <artifactId>deconfuse</artifactId>
  <version>0.1.1</version>
</dependency>

Example

import io.github.projectclean.deconfuse.core.DeConfuse;
import io.github.projectclean.deconfuse.core.DeConfuseFactory;
import io.github.projectclean.deconfuse.enums.Language;

class Test {
    public static void main(String[] args) throws Exception {
        String s = "ƉͤĆоɳſŪȘȄ";
        DeConfuse deConfuse = DeConfuseFactory.createDeConfuse(Language.ENGLISH);
        System.out.println(deConfuse.deConfuseString(s));
    }
}

/*
 * Output:
 * deconfuse
 */

FAQs

Package last updated on 23 May 2022

Did you know?

Socket

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.

Install

Related posts