1.0.4 • Published 3 years agoCLI
text-to-pt
Licence
ISC
Version
1.0.4
Deps
1
Size
68 kB
Vulns
0
Weekly
0
TextToPT
A Text converter to convert text to elements of the periotic table.
Usage
import TextToPTE from "text-to-pt";
var input_text = "Genius";
var elements = TextToPTE(input_text);
if (elements.length == 0) {
console.log("Can not convert to elements");
} else {
console.log(input_text, "Can be written with this elements:");
console.log(elements);
}