1.0.0 • Published 2 years ago

translationtext v1.0.0

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

translationtext

This package allow user to translate the data from one language to other

npm  install translationtext

Connect to the translationtext package

const translationtext = require("translationtext")

const dataTranslator=async()=>{

 const result = await translationtext("What are you doing",'hi')
 
 console.log(result)

}