text-to-pt
v1.0.4
Published
Converts text to elements from Periodic table, if possible
Downloads
5
Maintainers
Readme
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);
}