1.0.4 • Published 2 years ago

text-to-pt v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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);
}